nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/ppx.nix
2021-12-20 18:09:47 +01:00

14 lines
251 B
Nix

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