2b0fc36c90
ocamlPackages.js_of_ocaml*: use buildDunePackage to fix installation ocamlPackages.js_of_ocaml*: fix style for editorconfig Closes #106343
14 lines
307 B
Nix
14 lines
307 B
Nix
{ buildDunePackage, js_of_ocaml-compiler, js_of_ocaml-ppx
|
|
, js_of_ocaml, ocaml_lwt, lwt_log
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "js_of_ocaml-lwt";
|
|
|
|
inherit (js_of_ocaml-compiler) version src meta useDune2;
|
|
|
|
buildInputs = [ js_of_ocaml-ppx ];
|
|
|
|
propagatedBuildInputs = [ js_of_ocaml ocaml_lwt lwt_log ];
|
|
}
|