2020-12-06 23:42:51 +00:00
|
|
|
{ buildDunePackage, fetchFromGitHub, js_of_ocaml-compiler
|
2018-04-01 07:02:39 +00:00
|
|
|
, camlp4, ocsigen_deriving
|
2017-08-27 14:44:39 +00:00
|
|
|
}:
|
|
|
|
|
2020-12-06 23:42:51 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
version = "3.2.1";
|
|
|
|
pname = "js_of_ocaml-camlp4";
|
2017-08-27 14:44:39 +00:00
|
|
|
|
2022-03-13 14:39:14 +00:00
|
|
|
useDune2 = false;
|
|
|
|
|
2020-12-06 23:42:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ocsigen";
|
|
|
|
repo = "js_of_ocaml";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1v2hfq0ra9j07yz6pj6m03hrvgys4vmx0gclchv94yywpb2wc7ik";
|
|
|
|
};
|
2019-04-19 14:14:47 +00:00
|
|
|
|
2020-12-06 23:42:51 +00:00
|
|
|
buildInputs = [ camlp4 ocsigen_deriving ];
|
2022-05-18 00:57:46 +00:00
|
|
|
|
|
|
|
meta = builtins.removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
|
2017-08-27 14:44:39 +00:00
|
|
|
}
|