depot/pkgs/development/ocaml-modules/gen_js_api/ojs.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
543 B
Nix

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