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

buildDunePackage rec {
  pname = "ocaml-protoc";

  inherit (pbrt) version src;

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

  doCheck = true;

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