-
Notifications
You must be signed in to change notification settings - Fork 1
/
my3ml.nix
31 lines (31 loc) · 1.2 KB
/
my3ml.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
{ mkDerivation, aeson, array, base, bytestring, containers
, contravariant, contravariant-extras, cryptonite, directory
, elm-export, errors, exceptions, hasql, hasql-pool, http-api-data
, http-conduit, jose-jwt, memory, monad-logger, mtl, random
, safe-exceptions, servant-elm, servant-foreign, servant-server
, stdenv, stm, text, time, transformers, uuid, vector, wai
, wai-extra, warp
}:
mkDerivation {
pname = "my3ml";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base bytestring containers contravariant contravariant-extras
cryptonite errors hasql hasql-pool http-api-data http-conduit
jose-jwt memory monad-logger mtl safe-exceptions servant-server stm
text time transformers uuid vector wai
];
executableHaskellDepends = [
aeson array base bytestring containers cryptonite directory
elm-export exceptions hasql hasql-pool jose-jwt monad-logger mtl
random servant-elm servant-foreign servant-server stm text uuid wai
wai-extra warp
];
testHaskellDepends = [ base ];
homepage = "https://github.com/ThreeMinuteLearning/my3ml";
description = "Haskell backend for 3ML";
license = stdenv.lib.licenses.bsd3;
}