nixpkgs/pkgs/development/ocaml-modules/tls/default.nix

32 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, buildDunePackage, ppx_sexp_conv, ppx_cstruct, cstruct
, cstruct-sexp, sexplib, mirage-crypto, mirage-crypto-pk, mirage-crypto-rng
, x509, domain-name, fmt, cstruct-unix, ounit2, ocaml_lwt, ptime }:
2016-11-03 00:23:53 +00:00
buildDunePackage rec {
minimumOCamlVersion = "4.07";
2016-11-03 00:23:53 +00:00
version = "0.11.1";
pname = "tls";
2016-11-03 00:23:53 +00:00
src = fetchurl {
url = "https://github.com/mirleft/ocaml-tls/releases/download/v${version}/tls-v${version}.tbz";
sha256 = "0ms13fbaxgmpbviazlfa4hb7nmi7s22nklc7ns926b0rr1aq1069";
2016-11-03 00:23:53 +00:00
};
useDune2 = true;
2016-11-03 00:23:53 +00:00
doCheck = true;
buildInputs = [ cstruct-unix ounit2 ];
propagatedBuildInputs = [ ppx_sexp_conv ppx_cstruct cstruct cstruct-sexp
sexplib mirage-crypto mirage-crypto-pk mirage-crypto-rng
x509 domain-name fmt ocaml_lwt ptime ];
2016-11-03 00:23:53 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/mirleft/ocaml-tls";
2016-11-03 00:23:53 +00:00
description = "TLS in pure OCaml";
license = licenses.bsd2;
maintainers = with maintainers; [ sternenseemann ];
};
}