nixpkgs/pkgs/development/libraries/haskell/tls/default.nix
Peter Simons 608c56e845 haskell-tls: updated to version 0.8.3
svn path=/nixpkgs/trunk/; revision=30648
2011-12-01 13:35:10 +00:00

25 lines
684 B
Nix

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