From 39ed14b33d65db73c68c1952ea79f19f693b5ef8 Mon Sep 17 00:00:00 2001 From: Emin Arslan Date: Sun, 5 Apr 2026 23:04:03 +0300 Subject: [PATCH] nix: change pkgs.mkShellNoCC -> pkgs.mkShell because a standard environment is required in a development shell as well --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 797ed0b..8d28bc1 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ {pkgs ? import {}, ...}: # I use emacs and merlin while developing -pkgs.mkShellNoCC { +pkgs.mkShell { inputsFrom = [(import ./default.nix {pkgs=pkgs;})]; packages = [pkgs.ocamlPackages.merlin]; }