about summary refs log tree commit diff
path: root/pkgs/tools/backup/restic
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2024-02-04 23:43:58 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-02-05 01:20:43 +0000
commit42d5ed38be5eeaadcb45df723ae353138903572c (patch)
treeaf6b1fa19235c48d1039e45b94d345a63f6c0b47 /pkgs/tools/backup/restic
parent9f2ee8c91ac42da3ae6c6a1d21555f283458247e (diff)
restic: 0.16.3 -> 0.16.4
https://restic.net/blog/2024-02-04/restic-0.16.4-released/
(cherry picked from commit 2bb6778a9fceb7e1b8b084b050a1a7577d1f1dbd)
Diffstat (limited to 'pkgs/tools/backup/restic')
-rw-r--r--pkgs/tools/backup/restic/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/backup/restic/default.nix b/pkgs/tools/backup/restic/default.nix
index 0fbfaa693aac4..ad70b31a2a0ab 100644
--- a/pkgs/tools/backup/restic/default.nix
+++ b/pkgs/tools/backup/restic/default.nix
@@ -3,13 +3,13 @@
 
 buildGoModule rec {
   pname = "restic";
-  version = "0.16.3";
+  version = "0.16.4";
 
   src = fetchFromGitHub {
     owner = "restic";
     repo = "restic";
     rev = "v${version}";
-    hash = "sha256-nPOCncqdnwhmWrT11evBD4r5hpRb3DTdRej4zh4Q8lg=";
+    hash = "sha256-TSUhrtSgGIPM/cUzA6WDtCpqCyjtnM5BZDhK6udR0Ek=";
   };
 
   patches = [
@@ -17,7 +17,7 @@ buildGoModule rec {
     ./0001-Skip-testing-restore-with-permission-failure.patch
   ];
 
-  vendorHash = "sha256-stz76S2dwVlBuGW9R7+Uqs51Xsq7L/4pgTqUZnu7YCQ=";
+  vendorHash = "sha256-E+Erf8AdlMBdep1g2SpI8JKIdJuKqmyWEUmh8Rs5R/o=";
 
   subPackages = [ "cmd/restic" ];