2013-10-13 09:14:30 +01:00
|
|
|
{ cabal, aeson, certificate, conduit, connection, cprngAes
|
2014-01-16 10:54:50 +00:00
|
|
|
, cryptoApi, cryptoRandomApi, dataDefault, HUnit, monadControl, mtl
|
|
|
|
, network, networkConduit, pem, systemFileio, systemFilepath, tls
|
2014-01-29 10:45:07 +00:00
|
|
|
, transformers
|
2013-04-03 22:50:40 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "network-conduit-tls";
|
2014-01-29 10:45:07 +00:00
|
|
|
version = "1.0.4.1";
|
|
|
|
sha256 = "1l79v4ippyfw6pl4h3vqswh79vcif80phf6kq5fr4xmv3b6nbc06";
|
2013-04-03 22:50:40 +01:00
|
|
|
buildDepends = [
|
2013-10-13 09:14:30 +01:00
|
|
|
aeson certificate conduit connection cprngAes cryptoApi
|
|
|
|
cryptoRandomApi dataDefault monadControl network networkConduit pem
|
2014-01-29 10:45:07 +00:00
|
|
|
systemFileio systemFilepath tls transformers
|
2013-04-03 22:50:40 +01:00
|
|
|
];
|
2014-01-16 10:54:50 +00:00
|
|
|
testDepends = [ conduit connection HUnit mtl networkConduit ];
|
2013-04-03 22:50:40 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/snoyberg/conduit";
|
|
|
|
description = "Create TLS-aware network code with conduits";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|