19 lines
618 B
Nix
19 lines
618 B
Nix
|
{cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash,
|
||
|
mtl} :
|
||
|
|
||
|
cabal.mkDerivation (self : {
|
||
|
pname = "tls";
|
||
|
version = "0.7.2";
|
||
|
sha256 = "0x24jf83sfsnpvfm645lng5bc21zsbv6mbagr6q1q71zhfzfyb74";
|
||
|
propagatedBuildInputs = [
|
||
|
cereal certificate cryptoApi cryptocipher cryptohash mtl
|
||
|
];
|
||
|
meta = {
|
||
|
homepage = "http://github.com/vincenthz/hs-tls";
|
||
|
description = "TLS/SSL protocol native implementation (Server and Client)";
|
||
|
license = self.stdenv.lib.licenses.bsd3;
|
||
|
platforms = self.stdenv.lib.platforms.haskellPlatforms;
|
||
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||
|
};
|
||
|
})
|