2011-12-29 16:42:08 +00:00
|
|
|
{ cabal, asn1Data, attoparsec, attoparsecConduit, base64Bytestring
|
2012-02-16 14:05:41 +00:00
|
|
|
, blazeBuilder, blazeBuilderConduit, caseInsensitive, certificate
|
2012-05-28 11:23:20 +01: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 16:42:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-conduit";
|
2012-09-11 11:05:52 +01:00
|
|
|
version = "1.6.0.2";
|
|
|
|
sha256 = "1vp2jpva3ka149zh454x17d743bp58cwzw0f327pkzv36y4msam7";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
|
|
|
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
2012-02-16 14:05:41 +00:00
|
|
|
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
2012-05-28 11:23:20 +01: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 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;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 16:42:08 +00:00
|
|
|
};
|
|
|
|
})
|