ghcWithPackages: Get rid of unused passthrough

If you want the whole packages set...don't use ghcWithPackages.
This commit is contained in:
John Ericson 2018-01-02 22:14:50 -05:00
parent 6bdf9a7f6d
commit dea9fceb0b
2 changed files with 0 additions and 3 deletions

View File

@ -102,7 +102,6 @@ let
withPackages = packages: buildPackages.callPackage ./with-packages-wrapper.nix {
inherit (self) llvmPackages;
haskellPackages = self;
inherit packages;
};

View File

@ -1,7 +1,6 @@
{ lib, targetPlatform, ghc, llvmPackages, packages, symlinkJoin, makeWrapper
, withLLVM ? false
, postBuild ? ""
, haskellPackages
, ghcLibdir ? null # only used by ghcjs, when resolving plugins
}:
@ -131,6 +130,5 @@ symlinkJoin {
passthru = {
preferLocalBuild = true;
inherit (ghc) version meta;
inherit haskellPackages;
};
}