summary refs log tree commit diff
path: root/pkgs/development/tools/buf/default.nix
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2022-09-20 02:01:51 +0000
committerAaron Jheng <wentworth@outlook.com>2022-09-20 07:38:09 +0000
commit00e586af2da0b0c1bbd1b20acc25722cc58eacb5 (patch)
tree55a478d5b8bada229468a92e96dcd68cfe292bd5 /pkgs/development/tools/buf/default.nix
parent998f0f7924198b2460458728de59fe738997f28e (diff)
downloadnixpkgs-00e586af2da0b0c1bbd1b20acc25722cc58eacb5.tar
nixpkgs-00e586af2da0b0c1bbd1b20acc25722cc58eacb5.tar.gz
nixpkgs-00e586af2da0b0c1bbd1b20acc25722cc58eacb5.tar.bz2
nixpkgs-00e586af2da0b0c1bbd1b20acc25722cc58eacb5.tar.lz
nixpkgs-00e586af2da0b0c1bbd1b20acc25722cc58eacb5.tar.xz
nixpkgs-00e586af2da0b0c1bbd1b20acc25722cc58eacb5.tar.zst
nixpkgs-00e586af2da0b0c1bbd1b20acc25722cc58eacb5.zip
buf: 1.7.0 -> 1.8.0
Diffstat (limited to 'pkgs/development/tools/buf/default.nix')
-rw-r--r--pkgs/development/tools/buf/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/development/tools/buf/default.nix b/pkgs/development/tools/buf/default.nix
index 95d919155cc..afd39ecc2d3 100644
--- a/pkgs/development/tools/buf/default.nix
+++ b/pkgs/development/tools/buf/default.nix
@@ -10,26 +10,22 @@
 
 buildGoModule rec {
   pname = "buf";
-  version = "1.7.0";
+  version = "1.8.0";
 
   src = fetchFromGitHub {
     owner = "bufbuild";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-ALqyl5GLOxwsojR0/hfjO4yD3AEkyQK+faa3smMW94c=";
+    sha256 = "sha256-yU1xPOnSQXrYdF24EsXb/x+IfoQFjIbW1KEt//7Fl5Q=";
   };
 
-  vendorSha256 = "sha256-K+CAC2OrmjzpRF0DLSYp21BgvkxtJCF2FdpzYx/CqGI=";
+  vendorSha256 = "sha256-zEcKfMib/4/GfQC7M3f8R3v/hGh9F/KtjFs+pXDzbFk=";
 
   patches = [
     # Skip a test that requires networking to be available to work.
     ./skip_test_requiring_network.patch
     # Skip TestWorkspaceGit which requires .git and commits.
     ./skip_test_requiring_dotgit.patch
-    # Skips the invalid_upstream test as it is flakey. Based on upstream commit
-    # 27930caf2eb35c2592a77f59ed5afe4d9e2fb7ea.
-    # This patch may be removed on the next buf update.
-    ./skip_test_invalid_upstream_flakey.patch
   ];
 
   nativeBuildInputs = [ installShellFiles ];