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

29 lines
636 B
Nix
Raw Normal View History

2021-03-29 16:27:17 +02:00
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "protoc-gen-twirp";
2021-11-30 08:32:57 +01:00
version = "8.1.1";
2021-03-29 16:27:17 +02:00
src = fetchFromGitHub {
owner = "twitchtv";
repo = "twirp";
rev = "v${version}";
2021-11-30 08:32:57 +01:00
sha256 = "sha256-PnL7jgxAx/Xk/wajtQ+Q1G9KLes2NVANF2YmBcGFqe0=";
2021-03-29 16:27:17 +02:00
};
goPackagePath = "github.com/twitchtv/twirp";
subPackages = [
"protoc-gen-twirp"
];
2021-04-09 21:29:37 +02:00
doCheck = true;
2021-03-29 16:27:17 +02:00
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 ];
};
}