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

22 lines
650 B
Nix
Raw Normal View History

{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash
2012-10-24 18:06:11 +02:00
, mtl, network
}:
cabal.mkDerivation (self: {
pname = "tls";
2012-11-20 13:58:23 +01:00
version = "1.0.2";
sha256 = "0fkbh89j4gpwq45hv88axcdy7hxhvj1wj14nf7ma8wzaga2p4m75";
isLibrary = true;
isExecutable = true;
buildDepends = [
2012-10-24 18:06:11 +02:00
cereal certificate cryptoApi cryptocipher cryptohash 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 ];
};
})