mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
29 lines
1.0 KiB
Nix
29 lines
1.0 KiB
Nix
{ cabal, aeson, base16Bytestring, base64Bytestring, blazeBuilder
|
|
, byteable, caseInsensitive, cereal, conduit, conduitExtra
|
|
, cryptohash, dataDefault, filepath, httpConduit, httpTypes
|
|
, liftedBase, monadControl, mtl, resourcet, text, time
|
|
, transformers, unorderedContainers, utf8String, vector, xmlConduit
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "aws";
|
|
version = "0.9";
|
|
sha256 = "07sdz179vqfdcnm6rrdg068xdyqw8m2565bdba5a1s987vdvps21";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
aeson base16Bytestring base64Bytestring blazeBuilder byteable
|
|
caseInsensitive cereal conduit conduitExtra cryptohash dataDefault
|
|
filepath httpConduit httpTypes liftedBase monadControl mtl
|
|
resourcet text time transformers unorderedContainers utf8String
|
|
vector 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 ];
|
|
};
|
|
})
|