1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 04:48:10 +00:00
nixpkgs/pkgs/development/libraries/haskell/aws/default.nix

30 lines
1.1 KiB
Nix
Raw Normal View History

2014-04-04 22:29:31 +01:00
{ cabal, aeson, attempt, attoparsecConduit, base16Bytestring
, base64Bytestring, blazeBuilder, caseInsensitive, cereal, conduit
, cryptoApi, cryptohash, cryptohashCryptoapi, dataDefault, failure
, filepath, httpConduit, httpTypes, liftedBase, monadControl, mtl
, resourcet, text, time, transformers, unorderedContainers
, utf8String, vector, xmlConduit
2014-01-11 22:15:57 +00:00
}:
cabal.mkDerivation (self: {
pname = "aws";
2014-04-04 22:29:31 +01:00
version = "0.8.6";
sha256 = "19hjwj15zmhmf33n2d2dkwan59ylwkaslh85sh04v05hsm8y5y1a";
2014-01-11 22:15:57 +00:00
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-04-04 22:29:31 +01:00
aeson attempt attoparsecConduit base16Bytestring base64Bytestring
blazeBuilder caseInsensitive cereal conduit cryptoApi cryptohash
cryptohashCryptoapi dataDefault failure filepath httpConduit
httpTypes liftedBase monadControl mtl resourcet text time
transformers unorderedContainers utf8String vector xmlConduit
2014-01-11 22:15:57 +00:00
];
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;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})