1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/camlp4.nix
2018-09-15 19:32:32 +00:00

14 lines
333 B
Nix

{ 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;
buildInputs = [ ocaml findlib dune camlp4 ocsigen_deriving ];
buildPhase = "dune build -p js_of_ocaml-camlp4";
}