3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix

14 lines
256 B
Nix
Raw Normal View History

{ 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 ];
}