mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
20 lines
320 B
Nix
20 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";
|
|
};
|
|
}
|