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

14 lines
333 B
Nix
Raw Normal View History

2018-09-05 17:11:47 +01:00
{ stdenv, ocaml, findlib, dune, js_of_ocaml-compiler
, camlp4, ocsigen_deriving
}:
stdenv.mkDerivation rec {
name = "js_of_ocaml-camlp4-${version}";
inherit (js_of_ocaml-compiler) version src installPhase meta;
2018-09-05 17:11:47 +01:00
buildInputs = [ ocaml findlib dune camlp4 ocsigen_deriving ];
2018-09-05 17:11:47 +01:00
buildPhase = "dune build -p js_of_ocaml-camlp4";
}