13a10c3e54
- authenticate: updated to version 1.2.1.1 - blaze-html: added version 0.5.0.0 (unused right now because happstack can't deal with it) - BNFC-meta: updated to version 0.3.0.2 - graphviz: patched build to succeed with transformers 0.3.x - haskeline: updated to version 0.6.4.7 - http-conduit: updated to version 1.4.1.3 - numeric-prelude: updated to version 0.3.0.2 - pandoc: updated to version 1.9.3 svn path=/nixpkgs/trunk/; revision=34087
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ cabal, asn1Data, attoparsec, attoparsecConduit, base64Bytestring
|
|
, blazeBuilder, blazeBuilderConduit, caseInsensitive, certificate
|
|
, conduit, cookie, cprngAes, dataDefault, 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.3";
|
|
sha256 = "15mpha91dfpzy6bz2577jk0866nmyj17rjwnjz3x7zh3x0i06534";
|
|
buildDepends = [
|
|
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
|
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
|
cprngAes dataDefault 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 ];
|
|
};
|
|
})
|