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
|
{ mkDerivation, aeson, attoparsec, base, bytestring
, case-insensitive, exceptions, filepath, hpack, http-api-data
, http-types, jose, lens, lib, mmorph, monad-logger, mtl
, optparse-applicative, path-pieces, persistent
, persistent-postgresql, resource-pool, servant, servant-server
, text, transformers, unliftio-core, uuid, wai, wai-extra, warp
, warp-systemd
}:
mkDerivation {
pname = "spm";
version = "0.1.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base case-insensitive jose lens servant text
];
libraryToolDepends = [ hpack ];
executableHaskellDepends = [
aeson attoparsec base bytestring case-insensitive exceptions
filepath http-api-data http-types jose lens mmorph monad-logger mtl
optparse-applicative path-pieces persistent persistent-postgresql
resource-pool servant-server text transformers unliftio-core uuid
wai wai-extra warp warp-systemd
];
prePatch = "hpack";
license = lib.licenses.agpl3Plus;
}
|