-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
23 lines (23 loc) · 929 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
{ mkDerivation, acid-state, aeson, base, cassava, cereal
, clientsession, containers, either, gsuite-admin-sendmail
, http-client, http-client-tls, lens, memory
, natural-transformation, protolude, random, safecopy, servant
, servant-client, servant-server, stdenv, text, time, vector, wai
, warp, pretty-show, ctrie, purescript-bridge, regex-posix, gogol-sheets
}:
mkDerivation {
pname = "money-sync-service";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
acid-state aeson base cassava cereal clientsession containers
either gsuite-admin-sendmail http-client http-client-tls lens
memory natural-transformation protolude random safecopy servant
servant-client servant-server text time vector wai warp pretty-show
ctrie purescript-bridge regex-posix gogol-sheets
];
executableHaskellDepends = [ base ];
license = stdenv.lib.licenses.bsd3;
}