about summary refs log tree commit diff
path: root/pkgs/applications/backup
diff options
context:
space:
mode:
authornetworkException <git@nwex.de>2024-06-18 21:27:32 +0200
committernetworkException <git@nwex.de>2024-06-18 21:32:29 +0200
commitb320638f61b8a3762d61604cc29a0e38f7dc04e1 (patch)
treed33313c335731462a2af6f0e0d3d40de27917b97 /pkgs/applications/backup
parent240648a162860672cd64b714944747e12d70741d (diff)
downloadnixlib-b320638f61b8a3762d61604cc29a0e38f7dc04e1.tar
nixlib-b320638f61b8a3762d61604cc29a0e38f7dc04e1.tar.gz
nixlib-b320638f61b8a3762d61604cc29a0e38f7dc04e1.tar.bz2
nixlib-b320638f61b8a3762d61604cc29a0e38f7dc04e1.tar.lz
nixlib-b320638f61b8a3762d61604cc29a0e38f7dc04e1.tar.xz
nixlib-b320638f61b8a3762d61604cc29a0e38f7dc04e1.tar.zst
nixlib-b320638f61b8a3762d61604cc29a0e38f7dc04e1.zip
restic-integrity: update src to fetch from git.nwex.de
the repository moved from gitlab.upi.li to git.nwex.de.
Diffstat (limited to 'pkgs/applications/backup')
-rw-r--r--pkgs/applications/backup/restic-integrity/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/backup/restic-integrity/default.nix b/pkgs/applications/backup/restic-integrity/default.nix
index b4900eb31b7d..6d69b4d51127 100644
--- a/pkgs/applications/backup/restic-integrity/default.nix
+++ b/pkgs/applications/backup/restic-integrity/default.nix
@@ -1,13 +1,14 @@
 { lib
 , rustPlatform
-, fetchFromGitLab
+, fetchFromGitea
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "restic-integrity";
   version = "1.2.1";
-  src = fetchFromGitLab {
-    domain = "gitlab.upi.li";
+
+  src = fetchFromGitea {
+    domain = "git.nwex.de";
     owner = "networkException";
     repo = "restic-integrity";
     rev = version;
@@ -18,7 +19,7 @@ rustPlatform.buildRustPackage rec {
 
   meta = with lib; {
     description = "CLI tool to check the integrity of a restic repository without unlocking it";
-    homepage = "https://gitlab.upi.li/networkException/restic-integrity";
+    homepage = "https://git.nwex.de/networkException/restic-integrity";
     license = with licenses; [ bsd2 ];
     maintainers = with maintainers; [ janik ];
     mainProgram = "restic-integrity";