14 buildDunePackage rec {
15 pname = "ocaml-protoc-plugin";
18 src = fetchFromGitHub {
20 repo = "ocaml-protoc-plugin";
22 hash = "sha256-ZHeOi3y2X11MmkRuthmYFSjPLoGlGTO1pnRfk/XmgPU=";
39 nativeCheckInputs = [ protobuf ];
42 description = "Maps google protobuf compiler to Ocaml types.";
43 homepage = "https://github.com/issuu/ocaml-protoc-plugin";
44 license = lib.licenses.asl20;
46 The goal of Ocaml protoc plugin is to create an
47 up to date plugin for the google protobuf compiler
48 (protoc) to generate Ocaml types and serialization
49 and de-serialization function from a .proto file.
51 maintainers = [ lib.maintainers.GirardR1006 ];