ac69747aa8
svn path=/nixpkgs/trunk/; revision=32292
25 lines
697 B
Nix
25 lines
697 B
Nix
{ cabal, Cabal, cereal, certificate, cryptoApi, cryptocipher
|
|
, cryptohash, mtl
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "tls";
|
|
version = "0.9.0";
|
|
sha256 = "1lv4ihds9b253i79cc7fcp27s3jlh10vrbnrhbicrrmcgaqklg82";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
Cabal 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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|