python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / gen_js_api / default.nix
blobe0474cdac6a89bcfe78cc7fcccfac3558c6713ee
1 { buildDunePackage
2 , lib
3 , ppxlib
4 , fetchFromGitHub
5 , ojs
6 , js_of_ocaml-compiler
7 , nodejs
8 }:
10 buildDunePackage rec {
11   pname = "gen_js_api";
12   version = "1.0.9";
14   src = fetchFromGitHub {
15     owner = "LexiFi";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "1qx6if1avr484bl9x1h0cksdc6gqw5i4pwzdr27h46hppnnvi8y8";
19   };
21   minimalOCamlVersion = "4.08";
23   propagatedBuildInputs = [ ojs ppxlib ];
24   checkInputs = [ js_of_ocaml-compiler nodejs ];
25   doCheck = true;
27   meta = {
28     homepage = "https://github.com/LexiFi/gen_js_api";
29     description = "Easy OCaml bindings for JavaScript libraries";
30     longDescription = ''
31       gen_js_api aims at simplifying the creation of OCaml bindings for
32       JavaScript libraries. Authors of bindings write OCaml signatures for
33       JavaScript libraries and the tool generates the actual binding code with a
34       combination of implicit conventions and explicit annotations.
36       gen_js_api is to be used with the js_of_ocaml compiler.
37     '';
38     license = lib.licenses.mit;
39     maintainers = [ lib.maintainers.bcc32 ];
40   };