c05f314f7f
- authenticate: updated to version 1.2.1 - blaze-builder-enumerator: updated to version 0.2.0.4 - graphviz: updated to version 2999.13.0.2 - tls: updated to version 0.9.4 svn path=/nixpkgs/trunk/; revision=33853
22 lines
633 B
Nix
22 lines
633 B
Nix
{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash
|
|
, mtl
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "tls";
|
|
version = "0.9.4";
|
|
sha256 = "1yvarwd3cbagg14pk6fj3r1jhvrwnbz042fdxvw9jjrdz9khy0wc";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
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.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|