2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, cereal, certificate, cprngAes, cryptohash, cryptoPubkey
|
|
|
|
, cryptoRandomApi, mtl, network, QuickCheck, testFramework
|
|
|
|
, testFrameworkQuickcheck2, time
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "tls";
|
2013-01-30 10:29:42 +00:00
|
|
|
version = "1.1.2";
|
|
|
|
sha256 = "1vg1mnz6cxxgs48pbpjp4hwyvsysxyzvjfy4p1vd23lwc32cdjqg";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2013-01-16 11:42:13 +00:00
|
|
|
cereal certificate cryptohash cryptoPubkey cryptoRandomApi mtl
|
|
|
|
network
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
cereal certificate cprngAes cryptoPubkey cryptoRandomApi mtl
|
|
|
|
QuickCheck testFramework testFrameworkQuickcheck2 time
|
|
|
|
];
|
2013-02-24 22:33:12 +00:00
|
|
|
doCheck = false;
|
2011-08-07 23:51:22 +01: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 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|