-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbusboy.nix
More file actions
32 lines (32 loc) · 1.17 KB
/
busboy.nix
File metadata and controls
32 lines (32 loc) · 1.17 KB
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
32
{ mkDerivation, aeson, async, base, bytestring, co-log, containers
, generic-lens, http-client, http-client-tls, lens, lib, lucid
, optparse-applicative, scientific, servant, servant-client
, servant-lucid, servant-server, sqlite-simple, text, time, vector
, wai, warp
}:
mkDerivation {
pname = "busboy";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson async base bytestring co-log containers generic-lens
http-client http-client-tls lens lucid scientific servant
servant-client servant-lucid servant-server sqlite-simple text time
vector wai warp
];
executableHaskellDepends = [
aeson base bytestring co-log containers http-client http-client-tls
lucid optparse-applicative scientific servant servant-client
servant-lucid servant-server text time vector wai warp
];
testHaskellDepends = [
aeson base bytestring containers http-client http-client-tls lucid
scientific servant servant-client servant-lucid servant-server text
time vector wai warp
];
homepage = "https://github.com/undergroundquizscene/busboy#readme";
license = lib.licenses.bsd3;
mainProgram = "busboy-exe";
}