From c7132851f7db7e27289e8815ab68ebfe4dabea61 Mon Sep 17 00:00:00 2001 From: Hythera <87016780+Hythera@users.noreply.github.com> Date: Sat, 7 Feb 2026 10:39:12 +0100 Subject: [PATCH 1/2] buf: 1.64.0 -> 1.66.1 --- pkgs/by-name/bu/buf/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/bu/buf/package.nix b/pkgs/by-name/bu/buf/package.nix index 59f715a8872f..24767c52931b 100644 --- a/pkgs/by-name/bu/buf/package.nix +++ b/pkgs/by-name/bu/buf/package.nix @@ -10,16 +10,16 @@ buildGoModule (finalAttrs: { pname = "buf"; - version = "1.64.0"; + version = "1.66.1"; src = fetchFromGitHub { owner = "bufbuild"; repo = "buf"; tag = "v${finalAttrs.version}"; - hash = "sha256-vz7HtNe198Wjy4bjpx327VW11Qme5VWZMyeb56nWy0A="; + hash = "sha256-bBQSQ/ZLLSEYVmfpgh5OKapSHdBOFjrjAaMT/0js1Ts="; }; - vendorHash = "sha256-jBwIDPDRdXO89uyrw2Ul2uE50zCLxS9qBzoYOQXupUQ="; + vendorHash = "sha256-JFuH/NXWhw/Myzk2ct5xzKGuMM4ma0og2YT7ZIq3kKg="; patches = [ # Skip a test that requires networking to be available to work. @@ -45,8 +45,8 @@ buildGoModule (finalAttrs: { preCheck = '' # Some tests take longer depending on builder load. substituteInPlace private/bufpkg/bufcheck/lint_test.go \ - --replace-fail 'context.WithTimeout(context.Background(), 60*time.Second)' \ - 'context.WithTimeout(context.Background(), 600*time.Second)' + --replace-fail 'context.WithTimeout(t.Context(), 60*time.Second)' \ + 'context.WithTimeout(t.Context(), 600*time.Second)' # For WebAssembly runtime tests GOOS=wasip1 GOARCH=wasm go build -o $GOPATH/bin/buf-plugin-suffix.wasm \ ./private/bufpkg/bufcheck/internal/cmd/buf-plugin-suffix From 79acc1f9d91b80c2999dc3265e3cbf906456cb7b Mon Sep 17 00:00:00 2001 From: Hythera <87016780+Hythera@users.noreply.github.com> Date: Wed, 11 Mar 2026 09:25:47 +0100 Subject: [PATCH 2/2] buf: add hythera as maintainer --- pkgs/by-name/bu/buf/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/bu/buf/package.nix b/pkgs/by-name/bu/buf/package.nix index 24767c52931b..b0f52a1a437b 100644 --- a/pkgs/by-name/bu/buf/package.nix +++ b/pkgs/by-name/bu/buf/package.nix @@ -88,6 +88,7 @@ buildGoModule (finalAttrs: { description = "Create consistent Protobuf APIs that preserve compatibility and comply with design best-practices"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ + hythera jk lrewega ];