Files
nixpkgs/pkgs/development/ocaml-modules/tls/lwt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
262 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
tls,
lwt,
mirage-crypto-rng,
}:
buildDunePackage {
pname = "tls-lwt";
inherit (tls) src meta version;
minimalOCamlVersion = "4.11";
doCheck = true;
propagatedBuildInputs = [
lwt
mirage-crypto-rng
tls
];
}