c5c98b7617
- derive: updated to version 2.5.9 - ghc-mod: updated to version 1.11.0 - hamlet: updated to version 1.0.1.4 - http-conduit: updated to version 1.4.1.10 - leksah: updated to version 0.12.1.3 - mmap: updated to version 0.5.8 - mtl: added version 2.1.2 - prolog-graph-lib: updated to version 0.2.0.1 - prolog: updated to version 0.2.0.1 - reactive-banana-wx: updated to version 0.6.0.1 - resourcet: updated to version 0.3.3 - shelly: updated to version 0.12.0.2 - simple-sendfile: updated to version 0.2.4 - syb: added version 0.3.6.2 - wai-app-static: updated to version 1.2.0.4 - wai: updated to version 1.2.0.3 - warp: updated to version 1.2.2 - xml-types: updated to version 0.3.2 - zlib-conduit: updated to version 0.4.0.2
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.10";
|
|
sha256 = "0a2014bzh4vvm3qx5yarxgirzlngzy2xrwpi3bvnz1h3q0hggq01";
|
|
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 ];
|
|
};
|
|
})
|