We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce04788 commit df62d93Copy full SHA for df62d93
lib/project-overlays.nix
@@ -11,8 +11,8 @@
11
# devshell does not use pkgs.mkShell / pkgs.stdenv.mkDerivation,
12
# so we need to explicit required dependencies which
13
# are provided implicitely by stdenv when using the normal shell:
14
- ++ final.shell.stdenv.defaultNativeBuildInputs
15
- ++ final.shell.stdenv.extraNativeBuildInputs;
+ ++ (lib.filter lib.isDerivation final.shell.stdenv.defaultNativeBuildInputs)
+ ++ [ final.pkgs.buildPackages.binutils ];
16
env = lib.mapAttrsToList lib.nameValuePair {
17
inherit (final.shell) CABAL_CONFIG NIX_GHC_LIBDIR;
18
};
0 commit comments