26 lines
523 B
Nix
26 lines
523 B
Nix
{
|
|
buildDunePackage,
|
|
gen_js_api,
|
|
js_of_ocaml-compiler,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "ojs";
|
|
|
|
inherit (gen_js_api) version src;
|
|
|
|
propagatedBuildInputs = [ js_of_ocaml-compiler ];
|
|
|
|
doCheck = false; # checks depend on gen_js_api, which is a cycle
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
meta = {
|
|
inherit (gen_js_api.meta) homepage license maintainers;
|
|
description = "Runtime Library for gen_js_api generated libraries";
|
|
longDescription = ''
|
|
To be used in conjunction with gen_js_api
|
|
'';
|
|
};
|
|
}
|