Merge pull request #1513 from ocharles/haskellPackages.aws

haskellPackages.aws: New expression
This commit is contained in:
Peter Simons 2014-01-13 02:40:42 -08:00
commit 81d18d7f59
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ cabal, attempt, base64Bytestring, blazeBuilder, caseInsensitive
, cereal, conduit, cryptoApi, cryptohash, cryptohashCryptoapi
, dataDefault, failure, filepath, httpConduit, httpTypes
, liftedBase, monadControl, mtl, resourcet, text, time
, transformers, utf8String, xmlConduit
}:
cabal.mkDerivation (self: {
pname = "aws";
version = "0.8.4";
sha256 = "0p4m07lw33wd82phwfvyr1alqx3bsafnf25n60h1mss7l0rzyn0i";
isLibrary = true;
isExecutable = true;
buildDepends = [
attempt base64Bytestring blazeBuilder caseInsensitive cereal
conduit cryptoApi cryptohash cryptohashCryptoapi dataDefault
failure filepath httpConduit httpTypes liftedBase monadControl mtl
resourcet text time transformers utf8String xmlConduit
];
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 ];
};
})

View file

@ -577,6 +577,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
attoparsecEnumerator = callPackage ../development/libraries/haskell/attoparsec-enumerator {};
aws = callPackage ../development/libraries/haskell/aws {};
authenticate = callPackage ../development/libraries/haskell/authenticate {};
authenticateOauth = callPackage ../development/libraries/haskell/authenticate-oauth {};