about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2022-06-05 13:09:51 +0200
committerGitHub <noreply@github.com>2022-06-05 13:09:51 +0200
commit6218ada158442e098eb28ad42b283ea9c92b5475 (patch)
tree173bfae07f3083f7a8b11df9327d99713d8cd0ec /pkgs/tools
parent1daf0125afd9c44723d16f6b3dad5fcbc3cde858 (diff)
parent6ca21e550057edee0972141bc75773c9192ce2be (diff)
Merge pull request #176308 from dotlambda/restic-0.13.1
restic: 0.13.0 -> 0.13.1
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/backup/restic/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/backup/restic/default.nix b/pkgs/tools/backup/restic/default.nix
index e2e16f9f69a2d..3d799844ed8ee 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.13.0";
+  version = "0.13.1";
 
   src = fetchFromGitHub {
     owner = "restic";
     repo = "restic";
     rev = "v${version}";
-    sha256 = "sha256-pbCN262gyS5BSUTN9QU+x2Nnrc8mmCSQH6Inng4OS8c=";
+    sha256 = "sha256-jQgUPZumcIDkZ4s7R8o5F/p/b4ilPJGMPFKvUU30WaY=";
   };
 
   patches = [
@@ -42,9 +42,10 @@ buildGoModule rec {
 
   meta = with lib; {
     homepage = "https://restic.net";
+    changelog = "https://github.com/restic/restic/blob/${src.rev}/CHANGELOG.md";
     description = "A backup program that is fast, efficient and secure";
     platforms = platforms.linux ++ platforms.darwin;
     license = licenses.bsd2;
-    maintainers = [ maintainers.mbrgm ];
+    maintainers = [ maintainers.mbrgm maintainers.dotlambda ];
   };
 }