5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
19 lines
320 B
Nix
19 lines
320 B
Nix
{ 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";
|
|
};
|
|
}
|