mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
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:
parent
03de0c765c
commit
f9f680013c
@ -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 // {
|
||||
|
Loading…
Reference in New Issue
Block a user