2013-01-16 12:42:13 +01:00
|
|
|
{ cabal, cereal, certificate, cryptohash, cryptoPubkey
|
|
|
|
, cryptoRandomApi, 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";
|
2013-01-16 12:42:13 +01:00
|
|
|
version = "1.1.1";
|
|
|
|
sha256 = "0ji83b5z3v6f6a6rgyj5xkjh9vvsqckr7ymzjnhb4zqf0mgymypq";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2013-01-16 12:42:13 +01:00
|
|
|
cereal certificate cryptohash cryptoPubkey cryptoRandomApi mtl
|
|
|
|
network
|
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
|
|
|
};
|
|
|
|
})
|