summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-11-03 03:16:10 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2023-11-04 11:14:38 -0700
commit1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8 (patch)
treeb55c30054370579c7f210f9c6b8960dd192fff1c /pkgs/tools/admin
parenteb09eddf9646a2b0ade0ea98f65545124c139dae (diff)
downloadnixpkgs-1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8.tar
nixpkgs-1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8.tar.gz
nixpkgs-1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8.tar.bz2
nixpkgs-1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8.tar.lz
nixpkgs-1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8.tar.xz
nixpkgs-1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8.tar.zst
nixpkgs-1da45e6abe2ae48d05fc810e0ad86fccaa3da0e8.zip
ossutil: 1.7.16 -> 1.7.17
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/ossutil/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/admin/ossutil/default.nix b/pkgs/tools/admin/ossutil/default.nix
index 4e4bb79c995..77e3e9afab5 100644
--- a/pkgs/tools/admin/ossutil/default.nix
+++ b/pkgs/tools/admin/ossutil/default.nix
@@ -1,17 +1,17 @@
 { lib, buildGoModule, fetchFromGitHub }:
 
 buildGoModule rec {
-  version = "1.7.16";
+  version = "1.7.17";
   pname = "ossutil";
 
   src = fetchFromGitHub {
     owner = "aliyun";
     repo = "ossutil";
     rev = "refs/tags/v${version}";
-    hash = "sha256-J6t8QoyCvbGrUX2AkdqugztchP7Cc0jZsrn1+OB2hVY=";
+    hash = "sha256-5Z0mMgDYexUQAcngeEd0m5J5kRwWTGIS2Q+idBcTV98=";
   };
 
-  vendorHash = "sha256-oxhi27Zt91S2RwidM+BPati/HWuP8FrZs1X2R2Px5hI=";
+  vendorHash = "sha256-4a/bNH47sxxwgYYQhHTqyXddJit3VbeM49/4IEfjWsY=";
 
   # don't run tests as they require secret access keys that only travis has
   doCheck = false;