bc7c4c1951
- base16-bytestring: updated to version 0.1.1.5 - base64-bytestring: updated to version 0.1.1.3 - bloomfilter: updated to version 1.2.6.10 - cryptocipher: updated to version 0.3.5 - gtk: updated to version 0.12.3.1 - http-conduit: updated to version 1.4.1.9 - snap-core: updated to version 0.9.0 - snap-server: updated to version 0.9.0 - stringsearch: updated to version 0.3.6.3 - text: updated to version 0.11.2.2 - void: updated to version 0.5.6 svn path=/nixpkgs/trunk/; revision=34542
28 lines
1.2 KiB
Nix
28 lines
1.2 KiB
Nix
{ cabal, asn1Data, attoparsec, attoparsecConduit, base64Bytestring
|
|
, blazeBuilder, blazeBuilderConduit, caseInsensitive, certificate
|
|
, conduit, cookie, cprngAes, dataDefault, deepseq, failure
|
|
, httpTypes, liftedBase, monadControl, mtl, network, regexCompat
|
|
, resourcet, socks, text, time, tls, tlsExtra, transformers
|
|
, transformersBase, utf8String, void, zlibConduit
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "http-conduit";
|
|
version = "1.4.1.9";
|
|
sha256 = "0c0dnk3iqkx85453spry6qsw66pg3pjvqah0c1m64qqmv869bwbn";
|
|
buildDepends = [
|
|
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
|
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
|
cprngAes dataDefault deepseq failure httpTypes liftedBase
|
|
monadControl mtl network regexCompat resourcet socks text time tls
|
|
tlsExtra transformers transformersBase utf8String void zlibConduit
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/http-conduit";
|
|
description = "HTTP client package with conduit interface and HTTPS support";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|