nixpkgs/pkgs/development/libraries/haskell/tls/default.nix
2012-07-05 11:22:35 +02:00

22 lines
633 B
Nix

{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash
, mtl
}:
cabal.mkDerivation (self: {
pname = "tls";
version = "0.9.6";
sha256 = "0bcmq7pvdbgnc8ls949m3x9sxj5svsrdpagjns1iq575jg38jx3g";
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 ];
};
})