18 lines
302 B
Nix
18 lines
302 B
Nix
|
|
{
|
||
|
|
buildDunePackage,
|
||
|
|
js_of_ocaml-compiler,
|
||
|
|
ppxlib,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildDunePackage {
|
||
|
|
pname = "js_of_ocaml";
|
||
|
|
|
||
|
|
inherit (js_of_ocaml-compiler) version src;
|
||
|
|
|
||
|
|
buildInputs = [ ppxlib ];
|
||
|
|
|
||
|
|
propagatedBuildInputs = [ js_of_ocaml-compiler ];
|
||
|
|
|
||
|
|
meta = removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
|
||
|
|
}
|