Files
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

25 lines
399 B
Nix

{
lib,
ocaml,
buildDunePackage,
pbrt,
stdlib-shims,
pbrt_services,
}:
buildDunePackage {
pname = "ocaml-protoc";
inherit (pbrt) version src;
buildInputs = [ stdlib-shims ];
propagatedBuildInputs = [ pbrt ];
doCheck = lib.versionAtLeast ocaml.version "5.1";
checkInputs = [ pbrt_services ];
meta = pbrt.meta // {
description = "Protobuf Compiler for OCaml";
};
}