mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
ocamlPackages.ocaml-protoc: 2.4 → 4.1 ocamlPackages.pbrt_services: init at 4.1 ocamlPackages.pbrt_yojson: init at 4.1
25 lines
520 B
Nix
25 lines
520 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "pbrt";
|
|
version = "4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mransan";
|
|
repo = "ocaml-protoc";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-UrgrzI5Pgi79C/OhqYxwSNfqsoBULUZ13XVaB71fGes=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/mransan/ocaml-protoc";
|
|
description = "Runtime library for Protobuf tooling";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.vyorkin ];
|
|
};
|
|
})
|