forked from aristidb/aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
35 lines (35 loc) · 1.49 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
35
{ mkDerivation, aeson, attoparsec, base, base16-bytestring
, base64-bytestring, blaze-builder, byteable, bytestring
, case-insensitive, cereal, conduit, conduit-extra, containers
, cryptohash, data-default, directory, errors, filepath
, http-client, http-client-tls, http-conduit, http-types
, lifted-base, monad-control, mtl, network, old-locale, QuickCheck
, quickcheck-instances, resourcet, safe, scientific, stdenv, tagged
, tasty, tasty-hunit, tasty-quickcheck, text, time, transformers
, transformers-base, unordered-containers, utf8-string, vector
, xml-conduit
}:
mkDerivation {
pname = "aws";
version = "0.13.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
conduit-extra containers cryptohash data-default directory filepath
http-conduit http-types lifted-base monad-control mtl network
old-locale resourcet safe scientific tagged text time transformers
unordered-containers utf8-string vector xml-conduit
];
testHaskellDepends = [
aeson base bytestring errors http-client http-client-tls http-types
lifted-base monad-control mtl QuickCheck quickcheck-instances
resourcet tagged tasty tasty-hunit tasty-quickcheck text time
transformers transformers-base
];
homepage = "http://github.com/aristidb/aws";
description = "Amazon Web Services (AWS) for Haskell";
license = stdenv.lib.licenses.bsd3;
}