aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-30 14:53:40 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-30 14:54:06 +0000
commitbaaab2aab58aa3c47517d4ba9121a29a7ad73078 (patch)
tree319eacef7cef0dafeb092b9fd97be7d88ab7a0fd
parent696bb134c1c5882cf258e3c8a480b40239cb1a9a (diff)
Add `nativeBuildInputs` to shell.nix
-rw-r--r--shell.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
index 1addc06be..75bb6ac1b 100644
--- a/shell.nix
+++ b/shell.nix
@@ -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;