protoc-gen-connect-go: add changelog to meta
This commit is contained in:
parent
a45cdf386b
commit
859567c9fa
@ -1,4 +1,7 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "protoc-gen-connect-go";
|
pname = "protoc-gen-connect-go";
|
||||||
@ -7,17 +10,20 @@ buildGoModule rec {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bufbuild";
|
owner = "bufbuild";
|
||||||
repo = "connect-go";
|
repo = "connect-go";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-PRJqH+uBcF9SP6ZFcZfLfqJe4LSAbhFrcdBFRhiVTGM=";
|
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; {
|
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";
|
homepage = "https://github.com/bufbuild/connect-go";
|
||||||
|
changelog = "https://github.com/bufbuild/connect-go/releases/tag/v${version}";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ kilimnik ];
|
maintainers = with maintainers; [ kilimnik ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user