summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/js_of_ocaml/ocamlbuild.nix
blob: 3375e5ac5a0fcbfa06abe4b64d6f7dfe41cbacab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ buildDunePackage, js_of_ocaml-compiler
, ocamlbuild
}:

buildDunePackage {
  pname = "js_of_ocaml-ocamlbuild";

  inherit (js_of_ocaml-compiler) version src meta useDune2;

  minimalOCamlVersion = "4.03";

  propagatedBuildInputs = [ ocamlbuild ];
}