-
Notifications
You must be signed in to change notification settings - Fork 3
/
hops.nix
33 lines (33 loc) · 1.04 KB
/
hops.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ mkDerivation, aeson, ansi-terminal, attoparsec, base, bytestring
, conduit, conduit-extra, containers, deepseq, directory, filepath
, http-conduit, http-types, memoize, optparse-applicative, parallel
, process, QuickCheck, resourcet, stdenv, text, transformers
, vector, lib
}:
mkDerivation {
pname = "hops";
version = "0.8.5";
src = ./.;
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson attoparsec base bytestring
containers deepseq directory filepath
memoize optparse-applicative text transformers
vector
];
executableHaskellDepends = [
aeson attoparsec base bytestring
containers deepseq directory filepath
memoize optparse-applicative parallel text
transformers vector
];
testHaskellDepends = [
aeson attoparsec base bytestring containers deepseq directory
filepath memoize process QuickCheck text transformers vector
];
homepage = "http://akc.is/hops";
description = "Handy Operations on Power Series";
license = lib.licenses.bsd3;
}