b2d0c27d0a
It's used by smtps-gmail This reverts commit 70d73236e866a9157aaa65c0aba7a3e4880a823c.
22 lines
657 B
Nix
22 lines
657 B
Nix
{ cabal, certificate, cipherAes, cipherRc4, cryptohash
|
|
, cryptoPubkey, cryptoRandom, mtl, network, pem, time, tls, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "tls-extra";
|
|
version = "0.6.6";
|
|
sha256 = "0k0sj3nq1lrvbmd582mjj8cxbxigivz1hm8hhij1ncl2pgnq5xyv";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
certificate cipherAes cipherRc4 cryptohash cryptoPubkey
|
|
cryptoRandom mtl network pem time tls vector
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-tls";
|
|
description = "TLS extra default values and helpers";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|