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
|
{ mkDerivation, aeson, async, base, base-compat, base64-bytestring
, bytestring, containers, cryptohash-sha1, directory, extra
, filepath, fmt, getopt-generics, http-client, http-types, lib
, lucid, microlens-platform, monad-logger, process, servant
, servant-client, servant-lucid, servant-server, servant-websockets
, stm, text, time, tomland, universum, uuid, wai, wai-extra, walint
, warp, websockets
}:
mkDerivation {
pname = "walint-server";
version = "0.1";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson async base base-compat base64-bytestring bytestring
containers cryptohash-sha1 directory extra filepath fmt
getopt-generics http-client http-types lucid microlens-platform
monad-logger process servant servant-client servant-lucid
servant-server servant-websockets stm text time tomland universum
uuid wai wai-extra walint warp websockets
];
homepage = "https://stuebinm.eu/git/walint";
license = "unknown";
mainProgram = "walint-server";
}
|