Skip to content

Commit

Permalink
ocamlPackages.tls-eio: init at 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vog authored and vbgl committed Dec 11, 2024
1 parent bfd7154 commit 37dc568
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/development/ocaml-modules/tls/eio.nix
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 37dc568

Please sign in to comment.