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
24 lines
373 B
Nix
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;
|
|
}
|