depot/third_party/nixpkgs/pkgs/development/tools/protoc-gen-twirp/default.nix

32 lines
691 B
Nix
Raw Normal View History

{ 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 ];
};
}