summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-03-01 13:00:57 -0500
committerShea Levy <shea@shealevy.com>2017-03-01 13:00:57 -0500
commitc153036525575d046fc808a4805d023e3e2e9e75 (patch)
tree94e4435b56f18366df6800c9bf0e798928173b76 /pkgs/development
parentb0cff509837789ce732a648c1b37bccc9b302af4 (diff)
downloadnixlib-c153036525575d046fc808a4805d023e3e2e9e75.tar
nixlib-c153036525575d046fc808a4805d023e3e2e9e75.tar.gz
nixlib-c153036525575d046fc808a4805d023e3e2e9e75.tar.bz2
nixlib-c153036525575d046fc808a4805d023e3e2e9e75.tar.lz
nixlib-c153036525575d046fc808a4805d023e3e2e9e75.tar.xz
nixlib-c153036525575d046fc808a4805d023e3e2e9e75.tar.zst
nixlib-c153036525575d046fc808a4805d023e3e2e9e75.zip
haskell generic-builder: Pass through the list of haskell build inputs.
Useful for building custom envs.
Diffstat (limited to 'pkgs/development')
-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 7c3f64241934..964f569ef67a 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -303,7 +303,7 @@ stdenv.mkDerivation ({
 
   passthru = passthru // {
 
-    inherit pname version ghcEnv;
+    inherit pname version ghcEnv haskellBuildInputs;
 
     isHaskellLibrary = hasActiveLibrary;