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
|
2012-05-28 12:23:20 +02: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 17:42:08 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-conduit";
|
2012-06-28 14:45:11 +02:00
|
|
|
version = "1.4.1.10";
|
|
|
|
sha256 = "0a2014bzh4vvm3qx5yarxgirzlngzy2xrwpi3bvnz1h3q0hggq01";
|
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
|
2012-05-28 12:23:20 +02: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 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
|
|
|
};
|
|
|
|
})
|