mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
ocamlPackages.ocaml-protoc: 2.4 → 4.1 ocamlPackages.pbrt_services: init at 4.1 ocamlPackages.pbrt_yojson: init at 4.1
20 lines
294 B
Nix
20 lines
294 B
Nix
{
|
|
buildDunePackage,
|
|
pbrt,
|
|
pbrt_yojson,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "pbrt_services";
|
|
inherit (pbrt) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
pbrt
|
|
pbrt_yojson
|
|
];
|
|
|
|
meta = pbrt.meta // {
|
|
description = "Runtime library for ocaml-protoc to support RPC services";
|
|
};
|
|
}
|