2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, certificate, cryptoApi, cryptocipher, cryptohash, mtl
|
2012-04-20 13:35:13 +02:00
|
|
|
, network, pem, text, 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";
|
2012-10-08 11:25:26 +02:00
|
|
|
version = "0.4.7";
|
|
|
|
sha256 = "1ykmwkzq2vwjvcvg8c9b020baqxp3w7w0x7ka7jrk88aqmil9hiq";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-04-20 13:35:13 +02:00
|
|
|
certificate cryptoApi cryptocipher cryptohash mtl network pem text
|
|
|
|
time tls vector
|
2011-08-08 00:51:22 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-tls-extra";
|
|
|
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|