2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash
|
|
|
|
, mtl
|
|
|
|
}:
|
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";
|
2011-12-06 15:07:08 +01:00
|
|
|
version = "0.8.3.2";
|
|
|
|
sha256 = "1g30viz94qhwv3v16d9njrwyqmv0p1hs0r11xmzx0adp806w54z9";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-08 00:51:22 +02:00
|
|
|
cereal certificate cryptoApi cryptocipher cryptohash mtl
|
|
|
|
];
|
|
|
|
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;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|