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