protorpc: init at 1.1.2

This commit is contained in:
TomaSajt
2025-08-04 16:55:23 +02:00
parent 42005bc9ab
commit dd23f0d9dc

View File

@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "protorpc";
version = "1.1.2";
src = fetchFromGitHub {
owner = "chai2010";
repo = "protorpc";
tag = "v${finalAttrs.version}";
hash = "sha256-yu4aSWM0TNnGGLAA6NApMekHMi6e+McGRndi8ptdXfY=";
};
vendorHash = "sha256-qGFPUNomcFHRBX33WWdYaAY7196RljwFKuS+EZhKKz8=";
ldflags = [
"-s"
"-w"
];
meta = {
description = "Google Protocol Protobufs RPC for Go";
homepage = "https://github.com/chai2010/protorpc";
changelog = "https://github.com/chai2010/protorpc/blob/${finalAttrs.src.rev}/changelog.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ tomasajt ];
};
})