nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/ocamlbuild.nix

16 lines
357 B
Nix
Raw Normal View History

2017-08-27 15:32:39 +01:00
{ stdenv, ocaml, findlib, jbuilder, js_of_ocaml-compiler
, ocamlbuild
}:
stdenv.mkDerivation rec {
name = "js_of_ocaml-ocamlbuild-${version}";
inherit (js_of_ocaml-compiler) version src installPhase meta;
buildInputs = [ ocaml findlib jbuilder ];
propagatedBuildInputs = [ ocamlbuild ];
buildPhase = "jbuilder build -p js_of_ocaml-ocamlbuild";
}