-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
25 lines (25 loc) · 1 KB
/
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
24
25
{ mkDerivation, aeson, async, base, base64-bytestring, binary
, bytestring, case-insensitive, containers, deepseq, exceptions
, fast-logger, gitrev, hashable, herp-util, hpack, http-conduit
, lib, lrucaching, mono-traversable, mtl, optparse-generic
, proto3-suite, proto3-wire, raven-haskell, rio, safe
, safe-exceptions, stm, text, time, transformers, unix-compat
, unix-time, unordered-containers, uuid, vector, wai
}:
mkDerivation {
pname = "herp-logger";
version = "0.1.0.0";
src = ./.;
libraryHaskellDepends = [
aeson async base base64-bytestring binary bytestring
case-insensitive containers deepseq exceptions fast-logger gitrev
hashable herp-util http-conduit lrucaching mono-traversable mtl
optparse-generic proto3-suite proto3-wire raven-haskell rio safe
safe-exceptions stm text time transformers unix-compat unix-time
unordered-containers uuid vector wai
];
libraryToolDepends = [ hpack ];
prePatch = "hpack";
license = "unknown";
hydraPlatforms = lib.platforms.none;
}