Newer
Older
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
34
35
36
37
38
39
40
41
42
43
{ mkDerivation, Cabal, Diff, HUnit, QuickCheck, aeson, aeson-pretty
, array, base, base64-bytestring, bytestring, containers, cpphs
, directory, filepath, haskell-src, lib, lifted-base, monad-control
, mtl, old-time, pretty, process, random, regex-compat
, template-haskell, temporary, text, time, unix
, unordered-containers, vector, xmlgen
}:
mkDerivation {
pname = "HTF";
version = "0.15.0.1";
sha256 = "bc16a958bd36b03f673388470eed7fea01daaa1604677bb08dfb910598d39856";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
setupHaskellDepends = [ base Cabal process ];
libraryHaskellDepends = [
aeson array base base64-bytestring bytestring containers cpphs Diff
directory haskell-src HUnit lifted-base monad-control mtl old-time
pretty process QuickCheck random regex-compat text time unix vector
xmlgen
];
libraryToolDepends = [ cpphs ];
executableHaskellDepends = [
array base cpphs directory HUnit mtl old-time random text
];
executableToolDepends = [ cpphs ];
testHaskellDepends = [
aeson aeson-pretty base bytestring directory filepath HUnit mtl
process random regex-compat template-haskell temporary text
unordered-containers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/skogsbaer/HTF/";
description = "The Haskell Test Framework";
license = lib.licenses.lgpl21Only;
broken = false;
}