protoc-gen-connect-go: add changelog to meta
This commit is contained in:
parent
a45cdf386b
commit
859567c9fa
1 changed files with 12 additions and 6 deletions
|
@ -1,4 +1,7 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "protoc-gen-connect-go";
|
||||
|
@ -7,17 +10,20 @@ buildGoModule rec {
|
|||
src = fetchFromGitHub {
|
||||
owner = "bufbuild";
|
||||
repo = "connect-go";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-PRJqH+uBcF9SP6ZFcZfLfqJe4LSAbhFrcdBFRhiVTGM=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-PRJqH+uBcF9SP6ZFcZfLfqJe4LSAbhFrcdBFRhiVTGM=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-Bh2JCWTaML/QU/sLBsxLKMzzH++K22BTGusfcVW2GBw=";
|
||||
vendorHash = "sha256-Bh2JCWTaML/QU/sLBsxLKMzzH++K22BTGusfcVW2GBw=";
|
||||
|
||||
subPackages = [ "cmd/protoc-gen-connect-go" ];
|
||||
subPackages = [
|
||||
"cmd/protoc-gen-connect-go"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple, reliable, interoperable. A better gRPC.";
|
||||
description = "library for building browser and gRPC-compatible HTTP APIs";
|
||||
homepage = "https://github.com/bufbuild/connect-go";
|
||||
changelog = "https://github.com/bufbuild/connect-go/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ kilimnik ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue