2011-12-29 16:42:08 +00:00
|
|
|
{ cabal, asn1Data, attoparsec, attoparsecConduit, base64Bytestring
|
|
|
|
, blazeBuilder, blazeBuilderConduit, caseInsensitive, certificate
|
|
|
|
, conduit, cprngAes, dataDefault, failure, httpTypes, liftedBase
|
2012-01-16 11:33:48 +00:00
|
|
|
, monadControl, network, text, time, tls, tlsExtra, transformers
|
2012-01-06 13:29:53 +00:00
|
|
|
, transformersBase, utf8String, zlibConduit
|
2011-12-29 16:42:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-conduit";
|
2012-01-17 17:44:39 +00:00
|
|
|
version = "1.1.2.2";
|
|
|
|
sha256 = "049gidxmrw4zri2zkibl2298glhapzzh1kg001dn563594bbiccz";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
|
|
|
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
|
|
|
blazeBuilderConduit caseInsensitive certificate conduit cprngAes
|
|
|
|
dataDefault failure httpTypes liftedBase monadControl network text
|
2012-01-16 11:33:48 +00:00
|
|
|
time tls tlsExtra transformers transformersBase utf8String
|
|
|
|
zlibConduit
|
2011-12-29 16:42:08 +00:00
|
|
|
];
|
|
|
|
meta = {
|
2012-01-06 13:29:53 +00:00
|
|
|
homepage = "http://www.yesodweb.com/book/http-conduit";
|
2011-12-29 16:42:08 +00:00
|
|
|
description = "HTTP client package with conduit interface and HTTPS support";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|