nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/toplevel.nix
2023-01-07 13:51:10 +01:00

13 lines
337 B
Nix

{ lib, buildDunePackage, js_of_ocaml-compiler, ppxlib }:
buildDunePackage {
duneVersion = "3";
pname = "js_of_ocaml-toplevel";
inherit (js_of_ocaml-compiler) src version;
buildInputs = [ ppxlib ];
propagatedBuildInputs = [ js_of_ocaml-compiler ];
meta = js_of_ocaml-compiler.meta // {
mainProgram = "jsoo_mktop";
};
}