summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/js_of_ocaml/toplevel.nix
blob: d7d1f6fbcfe923acdfd1249603bacaa04ed76a30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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";
  };
}