-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.nix
40 lines (40 loc) · 1.73 KB
/
default.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
34
35
36
37
38
39
40
{ mkDerivation, aeson, attoparsec, base, bimaps, binary, BiobaseENA
, BiobaseTypes, bytes, bytestring, cereal, cereal-vector, cmdargs
, containers, csv, data-default, deepseq, DPutils, file-embed
, ForestStructures, hashable, lens, lib, mtl, primitive
, PrimitiveArray, QuickCheck, split, tasty, tasty-quickcheck
, tasty-th, text, tuple, vector, vector-binary-instances
, vector-th-unbox
}:
mkDerivation {
pname = "BiobaseXNA";
version = "0.11.1.1";
src = ./.;
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
];
homepage = "https://github.com/choener/BiobaseXNA";
description = "Efficient RNA/DNA/Protein Primary/Secondary Structure";
license = lib.licenses.bsd3;
}