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 98b1edc commit 7c0a91eCopy full SHA for 7c0a91e
lib/project-overlays.nix
@@ -10,8 +10,9 @@
10
packages = final.shell.nativeBuildInputs
11
# devshell does not use pkgs.mkShell / pkgs.stdenv.mkDerivation,
12
# so we need to explicit required dependencies which
13
- # are provided implicitely when using the normal shell:
14
- ++ (with final.pkgs; [ binutils git gcc glibc gawk gnugrep bash coreutils pkg-config ]);
+ # are provided implicitely by stdenv when using the normal shell:
+ ++ final.shell.stdenv.defaultNativeBuildInputs
15
+ ++ final.shell.stdenv.extraNativeBuildInputs;
16
env = lib.mapAttrsToList lib.nameValuePair {
17
inherit (final.shell) CABAL_CONFIG NIX_GHC_LIBDIR;
18
};
0 commit comments