about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/ocaml-protoc/default.nix
blob: 301a0f2c9a61f01d7fea0183bb43de3867179223 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchFromGitHub, buildDunePackage
, pbrt
, stdlib-shims
}:

buildDunePackage rec {
  pname = "ocaml-protoc";

  inherit (pbrt) version src;

  buildInputs = [ stdlib-shims ];
  propagatedBuildInputs = [ pbrt ];

  doCheck = true;

  meta = pbrt.meta // {
    description = "A Protobuf Compiler for OCaml";
  };
}