Files
Vincent Laporte 0ee7624090 ocamlPackages.lwt: 5.9.2 → 6.1.1
ocamlPackages.conduit-lwt-unix: disable tests with lwt ≥ 6
ocamlPackages.js_of_ocaml-lwt: log support is optional
ocamlPackages.lwt_log: mark as broken with lwt ≥ 6
ocamlPackages.tezt: mark as broken with lwt ≥ 6
2026-03-11 22:46:06 +01:00

24 lines
373 B
Nix

{
lib,
buildDunePackage,
js_of_ocaml-ppx,
js_of_ocaml,
lwt,
lwt_log,
loggerSupport ? !lib.versionAtLeast lwt.version "6.0.0",
}:
buildDunePackage {
pname = "js_of_ocaml-lwt";
inherit (js_of_ocaml) version src meta;
buildInputs = [ js_of_ocaml-ppx ];
propagatedBuildInputs = [
js_of_ocaml
lwt
]
++ lib.optional loggerSupport lwt_log;
}