mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
22 lines
634 B
Nix
22 lines
634 B
Nix
{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash
|
|
, mtl
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "tls";
|
|
version = "0.9.10";
|
|
sha256 = "1kiwb5skirdla32gjicgmjyk09p8f701jgs6krxbi38gmmfj1dxf";
|
|
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 ];
|
|
};
|
|
})
|