From 383cbce57a5ac8a2172643d0d4530c5d46c6a418 Mon Sep 17 00:00:00 2001 From: Luke Rewega Date: Wed, 13 Oct 2021 14:04:06 -0400 Subject: [PATCH] buf: 0.54.1 -> 1.0.0-rc7 --- pkgs/development/tools/buf/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/buf/default.nix b/pkgs/development/tools/buf/default.nix index d2b84ee3f6ee..abf9c7ebf54a 100644 --- a/pkgs/development/tools/buf/default.nix +++ b/pkgs/development/tools/buf/default.nix @@ -9,15 +9,15 @@ buildGoModule rec { pname = "buf"; - version = "0.54.1"; + version = "1.0.0-rc7"; src = fetchFromGitHub { owner = "bufbuild"; repo = pname; rev = "v${version}"; - sha256 = "sha256-v8n1K2YrN8o4IPA2u6Sg5zsOM08nppg29vlU6ycMj9U="; + sha256 = "sha256-ufXz9+WI4NARkQg36mPhGncL7G9fWjDX9Ka/EJdsTvk="; }; - vendorSha256 = "sha256-WLQ8Bw/UgRVTFEKpDbv6VZkMHQm2tgxekH3J7Sd5vC8="; + vendorSha256 = "sha256-wycrRCL7Mjx0QR5Y64WylpmDtKNh010mNxWAg6ekrds="; patches = [ # Skip a test that requires networking to be available to work. @@ -47,9 +47,7 @@ buildGoModule rec { for FILE in \ "buf" \ "protoc-gen-buf-breaking" \ - "protoc-gen-buf-lint" \ - "protoc-gen-buf-check-breaking" \ - "protoc-gen-buf-check-lint"; do + "protoc-gen-buf-lint"; do cp "$GOPATH/bin/$FILE" "$out/bin/" done @@ -63,6 +61,6 @@ buildGoModule rec { changelog = "https://github.com/bufbuild/buf/releases/tag/v${version}"; description = "Create consistent Protobuf APIs that preserve compatibility and comply with design best-practices"; license = licenses.asl20; - maintainers = with maintainers; [ raboof jk ]; + maintainers = with maintainers; [ raboof jk lrewega ]; }; }