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
44
45
46
47
48
{ mkDerivation, BiobaseENA, BiobaseTypes, DPutils, ForestStructures
, PrimitiveArray, QuickCheck, aeson, attoparsec, base, bimaps
, binary, bytes, bytestring, cereal, cereal-vector, cmdargs
, containers, csv, data-default, deepseq, file-embed, hashable
, lens, lib, mtl, primitive, split, tasty, tasty-quickcheck
, tasty-th, text, tuple, vector, vector-binary-instances
, vector-th-unbox
}:
mkDerivation {
pname = "BiobaseXNA";
version = "0.11.1.1";
sha256 = "3578c7ab6b90c14e83cc0d54929b697aca38ea871e24f12d3cf5495afee84973";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson attoparsec base bimaps binary BiobaseENA BiobaseTypes bytes
bytestring cereal cereal-vector containers csv data-default deepseq
DPutils file-embed ForestStructures hashable lens mtl primitive
PrimitiveArray QuickCheck split text tuple vector
vector-binary-instances vector-th-unbox
];
executableHaskellDepends = [
aeson attoparsec base bimaps binary BiobaseENA BiobaseTypes bytes
bytestring cereal cereal-vector cmdargs containers csv data-default
deepseq DPutils file-embed ForestStructures hashable lens mtl
primitive PrimitiveArray QuickCheck split text tuple vector
vector-binary-instances vector-th-unbox
];
testHaskellDepends = [
aeson attoparsec base bimaps binary BiobaseENA BiobaseTypes bytes
bytestring cereal cereal-vector containers csv data-default deepseq
DPutils file-embed ForestStructures hashable lens mtl primitive
PrimitiveArray QuickCheck split tasty tasty-quickcheck tasty-th
text tuple vector vector-binary-instances vector-th-unbox
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/choener/BiobaseXNA";
description = "Efficient RNA/DNA/Protein Primary/Secondary Structure";
license = lib.licenses.bsd3;
broken = false;
}