Merge pull request #48688 from ElvishJerricco/shellFor-nativeBuildInputs

haskellPackages.shellFor: Add nativeBuildInputs [Fixes #48435]
This commit is contained in:
John Ericson 2018-10-19 12:19:45 -04:00 committed by GitHub
commit 6b81005e66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;