diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-30 14:53:40 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-30 14:54:06 +0000 |
commit | baaab2aab58aa3c47517d4ba9121a29a7ad73078 (patch) | |
tree | 319eacef7cef0dafeb092b9fd97be7d88ab7a0fd | |
parent | 696bb134c1c5882cf258e3c8a480b40239cb1a9a (diff) |
Add `nativeBuildInputs` to shell.nix
-rw-r--r-- | shell.nix | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |