nixpkgs/pkgs/development/libraries/haskell/tls/default.nix
Peter Simons c882363fce haskell-tls: updated to version 0.8.2
svn path=/nixpkgs/trunk/; revision=30185
2011-11-02 01:42:26 +00:00

25 lines
684 B
Nix

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