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

23 lines
670 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-12-05 14:03:02 +01:00
version = "1.0.3";
sha256 = "14wgwz032skkgkxg2lyh8kwg1fkapmlg2jh74czbacvnssc2iidb";
isLibrary = true;
isExecutable = true;
buildDepends = [
2012-10-24 18:06:11 +02:00
cereal certificate cryptoApi cryptocipher cryptohash mtl network
];
2012-12-23 20:14:10 +01:00
jailbreak = true;
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 ];
};
})