ocamlPackages.tls-miou-unix: init at 2.0.2 (#480493)

This commit is contained in:
Vincent Laporte
2026-01-16 13:18:18 +00:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
buildDunePackage,
crowbar,
hxd,
miou,
mirage-crypto-rng-miou-unix,
ohex,
ptime,
rresult,
tls,
x509,
}:
buildDunePackage {
pname = "tls-miou-unix";
inherit (tls) src version;
propagatedBuildInputs = [
miou
tls
x509
];
doCheck = true;
checkInputs = [
crowbar
hxd
mirage-crypto-rng-miou-unix
ohex
ptime
rresult
];
meta = tls.meta // {
description = "Transport Layer Security purely in OCaml, Miou+Unix layer";
};
}
+2
View File
@@ -2090,6 +2090,8 @@ let
tls-lwt = callPackage ../development/ocaml-modules/tls/lwt.nix { };
tls-miou-unix = callPackage ../development/ocaml-modules/tls/miou-unix.nix { };
tls-mirage = callPackage ../development/ocaml-modules/tls/mirage.nix { };
toml = callPackage ../development/ocaml-modules/toml { };