2011-12-29 17:42:08 +01:00
|
|
|
{ cabal, asn1Data, attoparsec, attoparsecConduit, base64Bytestring
|
2012-02-16 15:05:41 +01:00
|
|
|
, blazeBuilder, blazeBuilderConduit, caseInsensitive, certificate
|
|
|
|
, conduit, cookie, cprngAes, dataDefault, failure, httpTypes
|
2012-04-05 18:51:59 +02:00
|
|
|
, liftedBase, monadControl, mtl, network, regexCompat, resourcet
|
|
|
|
, socks, text, time, tls, tlsExtra, transformers, transformersBase
|
|
|
|
, utf8String, void, zlibConduit
|
2011-12-29 17:42:08 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-conduit";
|
2012-04-16 14:07:58 +02:00
|
|
|
version = "1.4.1";
|
|
|
|
sha256 = "1jv5nk2h17hf2fp1r6ych9grnlx2hsclxgn10d5f1vx21xbd0hkl";
|
2011-12-29 17:42:08 +01:00
|
|
|
buildDepends = [
|
|
|
|
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
2012-02-16 15:05:41 +01:00
|
|
|
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
|
|
|
cprngAes dataDefault failure httpTypes liftedBase monadControl mtl
|
2012-04-05 18:51:59 +02:00
|
|
|
network regexCompat resourcet socks text time tls tlsExtra
|
|
|
|
transformers transformersBase utf8String void zlibConduit
|
2011-12-29 17:42:08 +01:00
|
|
|
];
|
|
|
|
meta = {
|
2012-01-06 14:29:53 +01:00
|
|
|
homepage = "http://www.yesodweb.com/book/http-conduit";
|
2011-12-29 17:42:08 +01:00
|
|
|
description = "HTTP client package with conduit interface and HTTPS support";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 17:42:08 +01:00
|
|
|
};
|
|
|
|
})
|