2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash
|
2012-10-24 18:06:11 +02:00
|
|
|
, mtl, network
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "tls";
|
2012-12-05 14:03:02 +01:00
|
|
|
version = "1.0.3";
|
|
|
|
sha256 = "14wgwz032skkgkxg2lyh8kwg1fkapmlg2jh74czbacvnssc2iidb";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-10-24 18:06:11 +02:00
|
|
|
cereal certificate cryptoApi cryptocipher cryptohash mtl network
|
2011-08-08 00:51:22 +02:00
|
|
|
];
|
2012-12-23 20:14:10 +01:00
|
|
|
jailbreak = true;
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-tls";
|
|
|
|
description = "TLS/SSL protocol native implementation (Server and Client)";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|