forked from aristidb/aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
33 lines (33 loc) · 1.42 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
{ 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-conduit, http-types, lifted-base, monad-control
, mtl, network, old-locale, QuickCheck, quickcheck-instances
, resourcet, safe, scientific, stdenv, tagged, tasty
, 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 lifted-base monad-control
mtl QuickCheck quickcheck-instances resourcet tagged tasty
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;
}