biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ocaml / js_of_ocaml / toplevel.nix
blob814aab16cb0090128d32d56e1062a104aba56d38
1 { lib, buildDunePackage, js_of_ocaml-compiler, ppxlib }:
3 buildDunePackage {
4   pname = "js_of_ocaml-toplevel";
5   inherit (js_of_ocaml-compiler) src version;
6   buildInputs = [ ppxlib ];
7   propagatedBuildInputs = [ js_of_ocaml-compiler ];
8   meta = js_of_ocaml-compiler.meta // {
9     mainProgram = "jsoo_mktop";
10   };