blob: 310e7903d0bd1181a4bc286ff37545a24a0e9083 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ compiler ? "ghc843"
, doHaddock ? false
, doBenchmark ? false
, doCheck ? true
, withHoogle ? false
, nixpkgs ? builtins.fetchTarball (import ../pkgs.nix)
}:
with import "${nixpkgs}" {};
haskell.packages.${compiler}.developPackage {
root = ./.;
overrides = with haskell.lib; self: super: {
ghc =
if withHoogle
then super.ghc // {withPackages = super.ghc.withHoogle;}
else super.ghc;
ghcWithPackages =
if withHoogle
then self.ghc.withPackages
else super.ghcWithPackages;
};
}
|