-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
24 lines (24 loc) · 952 Bytes
/
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
{ mkDerivation, aeson, base, blaze-html, containers, directory
, exceptions, filepath, lens, lineageflow-algorithm
, lineageflow-database-sqlite, lineageflow-script
, lineageflow-server-api, lineageflow-viewer-interface, markdown
, mtl, process, random, servant, servant-server, stdenv, temporary
, text, transformers, unix, wai, wai-cors, wai-extra, warp, yaml
}:
mkDerivation {
pname = "lineageflow-server";
version = "0.1.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson base blaze-html containers directory exceptions filepath lens
lineageflow-algorithm lineageflow-database-sqlite
lineageflow-script lineageflow-server-api
lineageflow-viewer-interface markdown mtl process random servant
servant-server temporary text transformers unix wai wai-cors
wai-extra warp yaml
];
description = "A server for LineageFlow algorithms";
license = stdenv.lib.licenses.agpl3;
}