summaryrefslogtreecommitdiff
path: root/ibb/default.nix
blob: 8525d993bf7fadbebd72cd823fb8021c52131ad0 (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 ../pack/nixpkgs.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;
  };
}