nixpkgs/pkgs/development/ocaml-modules/gen_js_api/ojs.nix
Aaron L. Zeng fd0b060560 ocamlPackages.gen_js_api: init at 1.0.9
I chose 1.0.9 instead of the latest 1.1.0, to avoid having to upgrade
js_of_ocaml first.
2022-04-18 15:28:49 +02:00

22 lines
446 B
Nix

{ buildDunePackage
, gen_js_api
}:
buildDunePackage rec {
pname = "ojs";
inherit (gen_js_api) version src;
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
'';
};
}