forked from input-output-hk/iohk-ops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
34 lines (34 loc) · 1.45 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
26
27
28
29
30
31
32
33
34
{ mkDerivation, aeson, aeson-pretty, amazonka, amazonka-s3
, ansi-terminal, base, bytestring, cassava, containers, cryptonite
, directory, dns, errors, exceptions, foldl, git, hourglass, hspec
, http-client, http-client-tls, http-conduit, http-types, lens
, lens-aeson, managed, memory, mtl, network-uri, optional-args
, optparse-applicative, regex-pcre, resourcet, safe, stdenv
, system-filepath, text, time, turtle, universum, unix
, unordered-containers, utf8-string, vector, yaml
}:
mkDerivation {
pname = "iohk-ops";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson aeson-pretty amazonka amazonka-s3 ansi-terminal base
bytestring cassava containers cryptonite directory dns errors
exceptions foldl git hourglass http-client http-client-tls
http-conduit http-types lens lens-aeson managed memory mtl
network-uri optional-args optparse-applicative regex-pcre resourcet
safe system-filepath text time turtle unix unordered-containers
utf8-string vector yaml
];
testHaskellDepends = [
aeson amazonka amazonka-s3 ansi-terminal base bytestring cassava
containers cryptonite directory errors exceptions foldl git
hourglass hspec http-client http-client-tls http-conduit http-types
lens lens-aeson managed memory network-uri regex-pcre resourcet
safe system-filepath text time turtle universum
unordered-containers yaml
];
license = stdenv.lib.licenses.bsd3;
}