summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2018-10-19 12:19:45 -0400
committerGitHub <noreply@github.com>2018-10-19 12:19:45 -0400
commit6b81005e66f1de9ccad34f2cf795fdb4f4f02942 (patch)
tree44c03ef904f48d4069ea440cba5c8ba20b1e77f2 /pkgs/development/haskell-modules
parent16ac473e20ba51b10f02916c0f9c1e0b214f2672 (diff)
parent0ee01e6c2e4283a2864449c55e4f52d940a97090 (diff)
downloadnixlib-6b81005e66f1de9ccad34f2cf795fdb4f4f02942.tar
nixlib-6b81005e66f1de9ccad34f2cf795fdb4f4f02942.tar.gz
nixlib-6b81005e66f1de9ccad34f2cf795fdb4f4f02942.tar.bz2
nixlib-6b81005e66f1de9ccad34f2cf795fdb4f4f02942.tar.lz
nixlib-6b81005e66f1de9ccad34f2cf795fdb4f4f02942.tar.xz
nixlib-6b81005e66f1de9ccad34f2cf795fdb4f4f02942.tar.zst
nixlib-6b81005e66f1de9ccad34f2cf795fdb4f4f02942.zip
Merge pull request #48688 from ElvishJerricco/shellFor-nativeBuildInputs
haskellPackages.shellFor: Add nativeBuildInputs [Fixes #48435]
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/generic-builder.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 4c17581f9d51..8f230c92aaa1 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -194,7 +194,7 @@ let
                      optionals doBenchmark (benchmarkDepends ++ benchmarkHaskellDepends ++ benchmarkSystemDepends ++ benchmarkFrameworkDepends);
 
 
-  allBuildInputs = propagatedBuildInputs ++ otherBuildInputs ++ depsBuildBuild;
+  allBuildInputs = propagatedBuildInputs ++ otherBuildInputs ++ depsBuildBuild ++ nativeBuildInputs;
   isHaskellPartition =
     stdenv.lib.partition isHaskellPkg allBuildInputs;