2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, cereal, certificate, cprngAes, cryptohash, cryptoPubkey
|
2013-09-02 12:20:18 +01:00
|
|
|
, cryptoRandom, mtl, network, QuickCheck, testFramework
|
2013-02-24 21:09:07 +00:00
|
|
|
, 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-09-08 21:05:41 +01:00
|
|
|
version = "1.1.5";
|
|
|
|
sha256 = "1ja03x3i7dgjpy22h4shnni1xslph8i8q4accqq8njpqpz54c84c";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2013-09-02 12:20:18 +01:00
|
|
|
cereal certificate cryptohash cryptoPubkey cryptoRandom mtl network
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-09-02 12:20:18 +01:00
|
|
|
cereal certificate cprngAes cryptoPubkey cryptoRandom mtl
|
2013-02-24 21:09:07 +00:00
|
|
|
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-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|