Merge pull request #18263 from Profpatsch/fix-hoogle

haskell: fix ghcWithHoogle to version 4
This commit is contained in:
Peter Simons 2016-09-03 18:37:56 +02:00 committed by GitHub
commit aecefd5579

View file

@ -85,7 +85,10 @@ let
ghcWithHoogle = selectFrom:
let
packages = selectFrom self;
hoogle = callPackage ./hoogle.nix { inherit packages; };
hoogle = callPackage ./hoogle.nix {
inherit packages;
hoogle = self.hoogle_4_2_43;
};
in withPackages (packages ++ [ hoogle ]);
ghc = ghc // {