Skip to content

Commit

Permalink
ghcWithPackages: fix ghc version passing
Browse files Browse the repository at this point in the history
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
  • Loading branch information
globin committed Jan 7, 2018
1 parent d1c81e2 commit b2e9096
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/development/haskell-modules/make-package-set.nix
Expand Up @@ -102,6 +102,7 @@ let

withPackages = packages: buildPackages.callPackage ./with-packages-wrapper.nix {
inherit (self) llvmPackages;
inherit ghc;
inherit packages;
};

Expand Down

1 comment on commit b2e9096

@Ericson2314
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.