8691ff4ea1
- certificate: updated to version 1.2.1 - crypto-api: updated to version 0.10.1 - crypto-conduit: patched to build crypto-api 0.10.x - http-conduit: updated to version 1.4.1.2 - http-enumerator: deleted obsolete package - MonadCatchIO-transformers: updated to version 0.3.0.0 - pem: updated to version 0.1.1 - RSA: updated to version 1.2.0.0 - skein: updated to version 0.1.0.5 - snap-core: patched to support MonadCatchIO-transformers version 0.3.0.0 - snap-server: patched to support MonadCatchIO-transformers version 0.3.0.0 - tagged: updated to version 0.4.2 - tls-extra: updated to version 0.4.5 - tls: updated to version 0.9.3 - yesod-auth: updated to version 1.0.1 - yesod: updated to version 1.0.1.1 svn path=/nixpkgs/trunk/; revision=33839
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.2";
|
|
sha256 = "1ji7pdqrzhzlmy2ig21s8fcfcqa29lc9k56l29zkw9qqgdaq5x3s";
|
|
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 ];
|
|
};
|
|
})
|