Skip to content

Commit b2e9096

Browse files
committedJan 7, 2018
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 5e31e82 cc @Ericson2314
1 parent d1c81e2 commit b2e9096

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎pkgs/development/haskell-modules/make-package-set.nix

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ let
102102

103103
withPackages = packages: buildPackages.callPackage ./with-packages-wrapper.nix {
104104
inherit (self) llvmPackages;
105+
inherit ghc;
105106
inherit packages;
106107
};
107108

1 commit comments

Comments
 (1)

Ericson2314 commented on Jan 7, 2018

@Ericson2314
Member

Looks correct to me, thanks for catching? I wish there was a way to catch this sort of thing better at eval time.

Please sign in to comment.