-
Notifications
You must be signed in to change notification settings - Fork 2
/
default.nix
29 lines (29 loc) · 1.13 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
{ mkDerivation, aeson, base, BiobaseBlast, BiobaseFasta, BlastHTTP
, bytestring, cassava, ClustalParser, cmdargs, containers
, directory, edit-distance, either-unwrap, filepath
, hierarchical-clustering, HTTP, http-conduit, http-types, hxt
, matrix, network, parsec, process, pureMD5, random, split, stdenv
, Taxonomy, text, text-metrics, time, transformers, vector
, ViennaRNAParser
}:
mkDerivation {
pname = "RNAlien";
version = "1.5.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base BiobaseBlast BiobaseFasta BlastHTTP bytestring cassava
ClustalParser cmdargs containers directory edit-distance
either-unwrap filepath hierarchical-clustering HTTP http-conduit
http-types hxt matrix network parsec process pureMD5 random
Taxonomy text text-metrics transformers vector ViennaRNAParser
];
executableHaskellDepends = [
base BiobaseFasta bytestring cassava cmdargs containers directory
either-unwrap filepath process random split text time vector
ViennaRNAParser
];
description = "Unsupervized construction of RNA family models";
license = stdenv.lib.licenses.gpl3;
}