nixpkgs-odroid-hc4/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
2025-12-20 09:59:59 +11:00

15 lines
327 B
Nix

{ buildDunePackage, js_of_ocaml-compiler
, ppxlib, uchar
}:
buildDunePackage {
pname = "js_of_ocaml";
inherit (js_of_ocaml-compiler) version src useDune2;
buildInputs = [ ppxlib ];
propagatedBuildInputs = [ js_of_ocaml-compiler uchar ];
meta = builtins.removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
}