32 lines
691 B
Nix
32 lines
691 B
Nix
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "protoc-gen-twirp";
|
||
|
version = "8.1.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "twitchtv";
|
||
|
repo = "twirp";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-p3gHVHGBHakOOQnJAuMK7vZumNXN15mOABuEHUG0wNs=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
go mod init github.com/twitchtv/twirp
|
||
|
'';
|
||
|
|
||
|
vendorHash = null;
|
||
|
|
||
|
subPackages = [
|
||
|
"protoc-gen-twirp"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Simple RPC framework with protobuf service definitions";
|
||
|
mainProgram = "protoc-gen-twirp";
|
||
|
homepage = "https://github.com/twitchtv/twirp";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ jojosch ];
|
||
|
};
|
||
|
}
|