Files
nixpkgs/pkgs/development/ocaml-modules/pbrt/yojson.nix
Vincent Laporte 67e55530a2 ocamlPackages.pbrt: 2.4 → 4.1
ocamlPackages.ocaml-protoc: 2.4 → 4.1

ocamlPackages.pbrt_services: init at 4.1
ocamlPackages.pbrt_yojson: init at 4.1
2026-06-22 06:34:23 +02:00

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