depot/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-protoc/default.nix

20 lines
296 B
Nix
Raw Normal View History

{ 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";
};
}