ocamlPackages.tls-eio: init at 1.0.4

This commit is contained in:
Volker Diels-Grabsch
2024-12-11 11:23:45 +01:00
committed by Vincent Laporte
parent bfd7154402
commit 37dc568acd
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
buildDunePackage,
crowbar,
eio,
eio_main,
logs,
mdx,
mirage-crypto-rng-eio,
ptime,
tls,
}:
buildDunePackage rec {
pname = "tls-eio";
inherit (tls) src meta version;
minimalOCamlVersion = "5.0";
doCheck = true;
nativeCheckInputs = [
mdx.bin
];
checkInputs = [
crowbar
eio_main
(mdx.override { inherit logs; })
];
propagatedBuildInputs = [
ptime
eio
mirage-crypto-rng-eio
tls
];
}
+2
View File
@@ -1844,6 +1844,8 @@ let
tls-async = callPackage ../development/ocaml-modules/tls/async.nix { };
tls-eio = callPackage ../development/ocaml-modules/tls/eio.nix { };
tls-lwt = callPackage ../development/ocaml-modules/tls/lwt.nix { };
tls-mirage = callPackage ../development/ocaml-modules/tls/mirage.nix { };