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
22 lines
313 B
Nix
22 lines
313 B
Nix
{
|
|
buildDunePackage,
|
|
pbrt,
|
|
base64,
|
|
yojson,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "pbrt_yojson";
|
|
inherit (pbrt) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
pbrt
|
|
base64
|
|
yojson
|
|
];
|
|
|
|
meta = pbrt.meta // {
|
|
description = "Runtime library for ocaml-protoc to support JSON encoding/decoding";
|
|
};
|
|
}
|