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