29 lines
636 B
Nix
29 lines
636 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "protoc-gen-twirp";
|
|
version = "8.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "twitchtv";
|
|
repo = "twirp";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PnL7jgxAx/Xk/wajtQ+Q1G9KLes2NVANF2YmBcGFqe0=";
|
|
};
|
|
|
|
goPackagePath = "github.com/twitchtv/twirp";
|
|
|
|
subPackages = [
|
|
"protoc-gen-twirp"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "A simple RPC framework with protobuf service definitions";
|
|
homepage = "https://github.com/twitchtv/twirp";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ jojosch ];
|
|
};
|
|
}
|