nixpkgs/pkgs/development/libraries/haskell/tls/default.nix
Peter Simons e419979131 haskell-tls: updated to version 0.8.1
svn path=/nixpkgs/trunk/; revision=29843
2011-10-14 17:26:32 +00:00

25 lines
684 B
Nix

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