about summary refs log tree commit diff
path: root/pkgs/development/tools/protoc-gen-connect-go
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2023-08-23 14:21:33 +0100
committer06kellyjac <dev@j-k.io>2023-08-23 14:21:33 +0100
commite52d122d77e985b681100e767b86adfa86bf46b2 (patch)
tree78489cf1b7186e667e9ab154be7b5e5fbcd659d8 /pkgs/development/tools/protoc-gen-connect-go
parentb401f3aac46af0f782db9aa3161d92a62b72a637 (diff)
protoc-gen-connect-go: 1.9.0 -> 1.11.0
Diff: https://github.com/connectrpc/connect-go/compare/refs/tags/v1.9.0...v1.11.0

Changelog: https://github.com/bufbuild/connect-go/releases/tag/v1.11.0
Diffstat (limited to 'pkgs/development/tools/protoc-gen-connect-go')
-rw-r--r--pkgs/development/tools/protoc-gen-connect-go/default.nix19
1 files changed, 12 insertions, 7 deletions
diff --git a/pkgs/development/tools/protoc-gen-connect-go/default.nix b/pkgs/development/tools/protoc-gen-connect-go/default.nix
index 123573401daec..0147913cca636 100644
--- a/pkgs/development/tools/protoc-gen-connect-go/default.nix
+++ b/pkgs/development/tools/protoc-gen-connect-go/default.nix
@@ -5,13 +5,13 @@
 
 buildGoModule rec {
   pname = "protoc-gen-connect-go";
-  version = "1.9.0";
+  version = "1.11.0";
 
   src = fetchFromGitHub {
-    owner = "bufbuild";
+    owner = "connectrpc";
     repo = "connect-go";
     rev = "refs/tags/v${version}";
-    hash = "sha256-2U5f+VUXZ8J9K27RccKvEY7FJs57XMasKMk+xgy0LuI=";
+    hash = "sha256-sKAocI2zT2jbw42Oe7lX8J1wLVBh7RfJe1hP8aXRCuM=";
   };
 
   vendorHash = "sha256-3opkr4kUD3NQNbNYOdSWIDqKbArv9OQUkBMzae1ccVY=";
@@ -20,11 +20,16 @@ buildGoModule rec {
     "cmd/protoc-gen-connect-go"
   ];
 
+  preCheck = ''
+    # test all paths
+    unset subPackages
+  '';
+
   meta = with lib; {
-    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}";
+    description = "Simple, reliable, interoperable, better gRPC";
+    homepage = "https://github.com/connectrpc/connect-go";
+    changelog = "https://github.com/connectrpc/connect-go/releases/tag/v${version}";
     license = licenses.asl20;
-    maintainers = with maintainers; [ kilimnik ];
+    maintainers = with maintainers; [ kilimnik jk ];
   };
 }