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