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

22 lines
507 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, ocaml, findlib, dune, js_of_ocaml-compiler
, camlp4, ocsigen_deriving
}:
stdenv.mkDerivation rec {
version = "3.2.1";
pname = "js_of_ocaml-camlp4";
src = fetchFromGitHub {
owner = "ocsigen";
repo = "js_of_ocaml";
rev = version;
sha256 = "1v2hfq0ra9j07yz6pj6m03hrvgys4vmx0gclchv94yywpb2wc7ik";
};
inherit (js_of_ocaml-compiler) installPhase meta;
2018-09-05 18:11:47 +02:00
buildInputs = [ ocaml findlib dune camlp4 ocsigen_deriving ];
2018-09-05 18:11:47 +02:00
buildPhase = "dune build -p js_of_ocaml-camlp4";
}