python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ocaml-protoc / default.nix
blob5abb026032beb10489de025e5b27c642312ed3c6
1 { lib, fetchFromGitHub, buildDunePackage
2 , stdlib-shims
3 }:
5 buildDunePackage rec {
6   pname = "ocaml-protoc";
7   version = "2.0.2";
9   useDune2 = true;
11   minimumOCamlVersion = "4.02";
13   src = fetchFromGitHub {
14     owner = "mransan";
15     repo = "ocaml-protoc";
16     rev = version;
17     sha256 = "1vlnjqqpypmjhlyrxfzla79y4ilmc9ggz311giy6vmh4cyzl29h3";
18   };
20   buildInputs = [ stdlib-shims ];
22   doCheck = true;
24   meta = with lib; {
25     homepage = "https://github.com/mransan/ocaml-protoc";
26     description = "A Protobuf Compiler for OCaml";
27     license = licenses.mit;
28     maintainers = [ maintainers.vyorkin ];
29   };