summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-03-01 19:56:08 +0100
committerPeter Simons <simons@cryp.to>2017-03-01 19:57:18 +0100
commit3001b821c9b4908d7060b9e384ccae620107a25f (patch)
treeed4d3f45e74c1d46fafb03324cfc4365c7e242b2 /pkgs/development
parentc393512809513a88e55e060abd1248e6f5a688d7 (diff)
downloadnixlib-3001b821c9b4908d7060b9e384ccae620107a25f.tar
nixlib-3001b821c9b4908d7060b9e384ccae620107a25f.tar.gz
nixlib-3001b821c9b4908d7060b9e384ccae620107a25f.tar.bz2
nixlib-3001b821c9b4908d7060b9e384ccae620107a25f.tar.lz
nixlib-3001b821c9b4908d7060b9e384ccae620107a25f.tar.xz
nixlib-3001b821c9b4908d7060b9e384ccae620107a25f.tar.zst
nixlib-3001b821c9b4908d7060b9e384ccae620107a25f.zip
haskell generic-builder: Revert "Pass through the list of haskell build inputs."
This reverts commit c153036525575d046fc808a4805d023e3e2e9e75. Please don't add
random stuff to the interface provided by the generic builder without
coordinating with others. There is a proper effort underway to provide that
information in https://github.com/NixOS/nixpkgs/pull/23023.
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 964f569ef67a..7c3f64241934 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 haskellBuildInputs;
+    inherit pname version ghcEnv;
 
     isHaskellLibrary = hasActiveLibrary;