Files
nixpkgs/pkgs/development/ocaml-modules/tls/async.nix
T
2025-02-24 07:15:14 +01:00

31 lines
419 B
Nix

{
buildDunePackage,
tls,
async,
cstruct-async,
core,
mirage-crypto-rng,
}:
buildDunePackage {
pname = "tls-async";
inherit (tls) src version;
minimalOCamlVersion = "4.14";
doCheck = true;
propagatedBuildInputs = [
async
core
cstruct-async
mirage-crypto-rng
tls
];
meta = tls.meta // {
description = "Transport Layer Security purely in OCaml, Async layer";
};
}