nixpkgs/pkgs/development/libraries/haskell/tls/default.nix

21 lines
623 B
Nix
Raw Normal View History

2013-01-16 12:42:13 +01:00
{ cabal, cereal, certificate, cryptohash, cryptoPubkey
, cryptoRandomApi, mtl, network
}:
cabal.mkDerivation (self: {
pname = "tls";
2013-01-16 12:42:13 +01:00
version = "1.1.1";
sha256 = "0ji83b5z3v6f6a6rgyj5xkjh9vvsqckr7ymzjnhb4zqf0mgymypq";
buildDepends = [
2013-01-16 12:42:13 +01:00
cereal certificate cryptohash cryptoPubkey cryptoRandomApi mtl
network
];
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 ];
};
})