2011-12-29 08:42:08 -08:00
|
|
|
{ cabal, asn1Data, attoparsec, attoparsecConduit, base64Bytestring
|
2012-02-16 06:05:41 -08:00
|
|
|
, blazeBuilder, blazeBuilderConduit, caseInsensitive, certificate
|
2012-05-28 03:23:20 -07:00
|
|
|
, conduit, cookie, cprngAes, dataDefault, deepseq, failure
|
|
|
|
, httpTypes, liftedBase, monadControl, mtl, network, regexCompat
|
|
|
|
, resourcet, socks, text, time, tls, tlsExtra, transformers
|
|
|
|
, transformersBase, utf8String, void, zlibConduit
|
2011-12-29 08:42:08 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-conduit";
|
2012-08-30 04:02:00 -07:00
|
|
|
version = "1.6.0.1";
|
|
|
|
sha256 = "0v6r57pliaam3i69826bf07iqmkm2s2x6f19mk0amh7fvdfjhgyb";
|
2011-12-29 08:42:08 -08:00
|
|
|
buildDepends = [
|
|
|
|
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
2012-02-16 06:05:41 -08:00
|
|
|
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
2012-05-28 03:23:20 -07:00
|
|
|
cprngAes dataDefault deepseq failure httpTypes liftedBase
|
|
|
|
monadControl mtl network regexCompat resourcet socks text time tls
|
|
|
|
tlsExtra transformers transformersBase utf8String void zlibConduit
|
2011-12-29 08:42:08 -08:00
|
|
|
];
|
|
|
|
meta = {
|
2012-01-06 05:29:53 -08:00
|
|
|
homepage = "http://www.yesodweb.com/book/http-conduit";
|
2011-12-29 08:42:08 -08: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 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 08:42:08 -08:00
|
|
|
};
|
|
|
|
})
|