evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / gen_js_api / ojs.nix
blob0cfe8f4bbfc1a94451629b76bb75d9fbcc271a90
1 { buildDunePackage
2 , gen_js_api
3 , js_of_ocaml-compiler
4 }:
6 buildDunePackage rec {
7   pname = "ojs";
9   inherit (gen_js_api) version src;
10   duneVersion = "3";
12   propagatedBuildInputs = [ js_of_ocaml-compiler ];
14   doCheck = false; # checks depend on gen_js_api, which is a cycle
16   minimalOCamlVersion = "4.08";
18   meta = {
19     inherit (gen_js_api.meta) homepage license maintainers;
20     description = "Runtime Library for gen_js_api generated libraries";
21     longDescription = ''
22       To be used in conjunction with gen_js_api
23     '';
24   };