2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, asn1Data, attoparsec, attoparsecEnumerator
|
|
|
|
, base64Bytestring, blazeBuilder, blazeBuilderEnumerator
|
|
|
|
, caseInsensitive, certificate, cprngAes, enumerator, failure
|
|
|
|
, httpTypes, monadControl, network, tls, tlsExtra, transformers
|
|
|
|
, utf8String, zlibEnum
|
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "http-enumerator";
|
2011-08-31 14:41:06 +02:00
|
|
|
version = "0.6.7";
|
|
|
|
sha256 = "13x8p0dfaq2nkqh9ym7rbslnacvmdf5v1lpny2cia2im09hd1xbi";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-08 00:51:22 +02:00
|
|
|
asn1Data attoparsec attoparsecEnumerator base64Bytestring
|
|
|
|
blazeBuilder blazeBuilderEnumerator caseInsensitive certificate
|
|
|
|
cprngAes enumerator failure httpTypes monadControl network tls
|
|
|
|
tlsExtra transformers utf8String zlibEnum
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/http-enumerator";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "HTTP client package with enumerator interface and HTTPS support";
|
2011-08-08 00:51:22 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|