1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 11:30:30 -04:00

Add nativeBuildInputs to shell.nix

This commit is contained in:
John Ericson 2020-06-30 14:53:40 +00:00
parent 696bb134c1
commit baaab2aab5

View file

@ -7,6 +7,8 @@ with import ./release-common.nix { inherit pkgs enableStatic; };
(if useClang then clangStdenv else stdenv).mkDerivation {
name = "nix";
nativeBuildInputs = nativeBuildDeps;
buildInputs = buildDeps ++ propagatedDeps ++ perlDeps;
inherit configureFlags;