haskell: fix ghcWithHoogle to version 4

Version 5 does not yet work with the ghcWithHoogle infrastructure. This
fixes Hoogle to version 4 as a temporary measure.
This commit is contained in:
Profpatsch 2016-09-03 16:35:19 +02:00
parent 03de0c765c
commit f9f680013c

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 // {