about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/make-package-set.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2018-01-07 03:32:10 +0100
committerRobin Gloster <mail@glob.in>2018-01-07 03:36:19 +0100
commitb2e9096f68172565b48be2c6b26b7a313c896c18 (patch)
treef888020622fce8d72a83e776389ba81c6d20d800 /pkgs/development/haskell-modules/make-package-set.nix
parentd1c81e29c35365f17f165af4783a7af77ee50d46 (diff)
ghcWithPackages: fix ghc version passing
The correct ghc version was not passed through anymore, I'm not entirely
sure this is the correct fix or if this is the only argument that was
missing.

broken by 5e31e828f88a8aa229d68bade00d9f2d70f7b9f8

cc @Ericson2314
Diffstat (limited to 'pkgs/development/haskell-modules/make-package-set.nix')
-rw-r--r--pkgs/development/haskell-modules/make-package-set.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/make-package-set.nix b/pkgs/development/haskell-modules/make-package-set.nix
index 6d11048cb6df2..f85259e699bc5 100644
--- a/pkgs/development/haskell-modules/make-package-set.nix
+++ b/pkgs/development/haskell-modules/make-package-set.nix
@@ -102,6 +102,7 @@ let
 
   withPackages = packages: buildPackages.callPackage ./with-packages-wrapper.nix {
     inherit (self) llvmPackages;
+    inherit ghc;
     inherit packages;
   };