summaryrefslogtreecommitdiffstats
path: root/pager.nix
blob: 5f0de90b1d353b50cc3c4d1932137fe27a88dda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ mkDerivation, aeson, base, blessings, bytestring, containers
, data-default, hack, http-client, http-types, io-streams, network
, optparse-applicative, probability, scanner, speculate, split
, stdenv, template-haskell, terminal-size, text, time, unix
}:
mkDerivation {
  pname = "pager";
  version = "1.0.0";
  src = ./.;
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [ aeson base template-haskell text ];
  executableHaskellDepends = [
    aeson base blessings bytestring containers data-default hack
    http-client http-types io-streams network optparse-applicative
    probability scanner speculate split terminal-size text time unix
  ];
  license = stdenv.lib.licenses.mit;
}