biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / ocaml-protoc / default.nix
blob301a0f2c9a61f01d7fea0183bb43de3867179223
1 { lib, fetchFromGitHub, buildDunePackage
2 , pbrt
3 , stdlib-shims
4 }:
6 buildDunePackage rec {
7   pname = "ocaml-protoc";
9   inherit (pbrt) version src;
11   buildInputs = [ stdlib-shims ];
12   propagatedBuildInputs = [ pbrt ];
14   doCheck = true;
16   meta = pbrt.meta // {
17     description = "A Protobuf Compiler for OCaml";
18   };