about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-03 08:10:05 -0500
committerGitHub <noreply@github.com>2023-08-03 08:10:05 -0500
commit059a26d8113aea59ab2a779757f9fecc7c68d750 (patch)
tree57cbff142b7f135150912155a855b4e97ce88b78
parent962bc02f9aab02840f74b9b216ff2e6a9b323def (diff)
parente1713a15783b05d4da13aab27de48076dbb1d7d5 (diff)
Merge pull request #246752 from r-ryantm/auto-update/docker-credential-helpers
docker-credential-helpers: 0.7.0 -> 0.8.0
-rw-r--r--pkgs/tools/admin/docker-credential-helpers/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/admin/docker-credential-helpers/default.nix b/pkgs/tools/admin/docker-credential-helpers/default.nix
index 7859145dfdd13..151da67fe91fb 100644
--- a/pkgs/tools/admin/docker-credential-helpers/default.nix
+++ b/pkgs/tools/admin/docker-credential-helpers/default.nix
@@ -2,16 +2,16 @@
 
 buildGoModule rec {
   pname = "docker-credential-helpers";
-  version = "0.7.0";
+  version = "0.8.0";
 
   src = fetchFromGitHub {
     owner = "docker";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-KtDWrtd88s4Al3iWxIYE+YlhZTzf8/YDVYE2AwxH8ho=";
+    sha256 = "sha256-3zWlYW+2LA/JK/lv/OTzMlF2HlQPID0WYks0dQrP3GY=";
   };
 
-  vendorSha256 = null;
+  vendorHash = null;
 
   nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];