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;
}
|