summaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: 836da25e36826b83138136390a0d98c0e539875b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ nixpkgs ? import <nixpkgs> {}, compiler ? "default", doBenchmark ? false }:

let

  inherit (nixpkgs) pkgs;

  haskellPackages = if compiler == "default"
                       then pkgs.haskellPackages
                       else pkgs.haskell.packages.${compiler};

  variant = if doBenchmark then pkgs.haskell.lib.doBenchmark else pkgs.lib.id;

  drv = variant (haskellPackages.callPackage ./pager.nix {
  });

in

  pkgs.lib.overrideDerivation drv.env (oldAttrs: {
    buildInputs = [
      pkgs.cabal-install
    ];
  })