summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/gen_js_api/ojs.nix
blob: 0cfe8f4bbfc1a94451629b76bb75d9fbcc271a90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ buildDunePackage
, gen_js_api
, js_of_ocaml-compiler
}:

buildDunePackage rec {
  pname = "ojs";

  inherit (gen_js_api) version src;
  duneVersion = "3";

  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
    '';
  };
}