blob: 1d6a065c2adf16174a08356bcc07910fee4d23e3 (
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
, pkgs ? import (fetchGit (import ../pkgs.nix)) {}
}:
with pkgs;
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;
};
}
|