2020-12-06 23:42:51 +00:00
|
|
|
{ buildDunePackage, fetchFromGitHub, js_of_ocaml-compiler
|
2018-04-01 08:02:39 +01:00
|
|
|
, camlp4, ocsigen_deriving
|
2017-08-27 15:44:39 +01:00
|
|
|
}:
|
|
|
|
|
2020-12-06 23:42:51 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
version = "3.2.1";
|
|
|
|
pname = "js_of_ocaml-camlp4";
|
2017-08-27 15:44:39 +01:00
|
|
|
|
2020-12-06 23:42:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ocsigen";
|
|
|
|
repo = "js_of_ocaml";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1v2hfq0ra9j07yz6pj6m03hrvgys4vmx0gclchv94yywpb2wc7ik";
|
|
|
|
};
|
2019-04-19 15:14:47 +01:00
|
|
|
|
2020-12-06 23:42:51 +00:00
|
|
|
inherit (js_of_ocaml-compiler) meta;
|
2017-08-27 15:44:39 +01:00
|
|
|
|
2020-12-06 23:42:51 +00:00
|
|
|
buildInputs = [ camlp4 ocsigen_deriving ];
|
2017-08-27 15:44:39 +01:00
|
|
|
}
|