forked from aristidb/aws
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaws.nix
More file actions
33 lines (32 loc) · 1.21 KB
/
aws.nix
File metadata and controls
33 lines (32 loc) · 1.21 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
33
{ cabal, aeson, attoparsec, base16Bytestring, base64Bytestring
, blazeBuilder, byteable, caseInsensitive, cereal, conduit
, conduitExtra, cryptohash, dataDefault, errors, filepath
, httpConduit, httpTypes, liftedBase, monadControl, mtl, network
, QuickCheck, quickcheckInstances, resourcet, safe, scientific
, tagged, tasty, tastyQuickcheck, text, time, transformers
, unorderedContainers, utf8String, vector, xmlConduit
}:
cabal.mkDerivation (self: {
pname = "aws";
version = "0.10.3";
src = ./.;
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson attoparsec base16Bytestring base64Bytestring blazeBuilder
byteable caseInsensitive cereal conduit conduitExtra cryptohash
dataDefault filepath httpConduit httpTypes liftedBase monadControl
mtl network resourcet safe scientific tagged text time transformers
unorderedContainers utf8String vector xmlConduit
];
testDepends = [
aeson errors mtl QuickCheck quickcheckInstances tagged tasty
tastyQuickcheck text transformers
];
meta = {
homepage = "http://github.com/aristidb/aws";
description = "Amazon Web Services (AWS) for Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})