mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib, fetchurl, buildDunePackage
|
|
, cstruct, cstruct-sexp, domain-name, fmt, ppx_cstruct, ppx_sexp_conv, logs, hkdf, mirage-crypto, mirage-crypto-ec, mirage-crypto-pk, mirage-crypto-rng, ocaml_lwt, ptime, rresult, sexplib, x509
|
|
, alcotest, cstruct-unix, ounit2, randomconv
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "tls";
|
|
version = "0.13.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirleft/ocaml-tls/releases/download/v${version}/tls-v${version}.tbz";
|
|
sha256 = "sha256-IE6Fuvem8A3lZ/M8GLNYNwCG+v7BbPQ4QdYS+fKT50c=";
|
|
};
|
|
|
|
minimumOCamlVersion = "4.08";
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [
|
|
cstruct
|
|
cstruct-sexp
|
|
domain-name
|
|
fmt
|
|
ppx_cstruct
|
|
ppx_sexp_conv
|
|
logs
|
|
hkdf
|
|
mirage-crypto
|
|
mirage-crypto-ec
|
|
mirage-crypto-pk
|
|
mirage-crypto-rng
|
|
ocaml_lwt
|
|
ptime
|
|
rresult
|
|
sexplib
|
|
x509
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
alcotest
|
|
cstruct-unix
|
|
ounit2
|
|
randomconv
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mirleft/ocaml-tls";
|
|
description = "TLS in pure OCaml";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ sternenseemann ];
|
|
};
|
|
}
|