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
|
2013-01-18 11:29:55 +00:00
|
|
|
, filepath, httpTypes, liftedBase, mimeTypes, monadControl, mtl
|
|
|
|
, network, random, 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";
|
2013-02-20 10:58:03 +00:00
|
|
|
version = "1.8.9";
|
|
|
|
sha256 = "0v99nc29h4qm1dbs7bwk4nwhxwk22vzl4ghrq9r3vishi6gwr7hb";
|
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
|
2013-01-18 11:29:55 +00:00
|
|
|
cprngAes dataDefault deepseq failure filepath httpTypes liftedBase
|
|
|
|
mimeTypes monadControl mtl network random 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
|
|
|
};
|
|
|
|
})
|