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 committed Dec 10, 2024
1 parent 6f39fdb commit 7b89ba1
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/ocaml-modules/tls/eio.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
buildDunePackage,
crowbar,
eio,
eio_main,
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
];

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 @@ -1842,6 +1842,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 7b89ba1

Please sign in to comment.