2013-01-16 11:42:13 +00:00
|
|
|
{ cabal, certificate, cipherAes, cipherRc4, cryptohash
|
2013-09-02 12:20:18 +01:00
|
|
|
, cryptoPubkey, cryptoRandom, mtl, network, pem, time, tls, vector
|
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-extra";
|
2013-10-10 10:50:48 +01:00
|
|
|
version = "0.6.6";
|
|
|
|
sha256 = "0k0sj3nq1lrvbmd582mjj8cxbxigivz1hm8hhij1ncl2pgnq5xyv";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-01-16 11:42:13 +00:00
|
|
|
certificate cipherAes cipherRc4 cryptohash cryptoPubkey
|
2013-09-02 12:20:18 +01:00
|
|
|
cryptoRandom mtl network pem time tls vector
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
2013-08-11 18:25:32 +01:00
|
|
|
jailbreak = true;
|
2011-08-07 23:51:22 +01:00
|
|
|
meta = {
|
2012-10-24 17:06:11 +01:00
|
|
|
homepage = "http://github.com/vincenthz/hs-tls";
|
2011-08-07 23:51:22 +01:00
|
|
|
description = "TLS extra default values and helpers";
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|