From b320638f61b8a3762d61604cc29a0e38f7dc04e1 Mon Sep 17 00:00:00 2001 From: networkException Date: Tue, 18 Jun 2024 21:27:32 +0200 Subject: [PATCH 1/2] restic-integrity: update src to fetch from git.nwex.de the repository moved from gitlab.upi.li to git.nwex.de. --- pkgs/applications/backup/restic-integrity/default.nix | 9 +++++---- 1 file 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"; From e8e57d101461b8880a33fa1fc75c6613a27cb2ce Mon Sep 17 00:00:00 2001 From: networkException Date: Tue, 18 Jun 2024 21:33:46 +0200 Subject: [PATCH 2/2] restic-integrity: 1.2.1 -> 1.2.2 --- pkgs/applications/backup/restic-integrity/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/backup/restic-integrity/default.nix b/pkgs/applications/backup/restic-integrity/default.nix index 6d69b4d51127..d0311e5d40d0 100644 --- a/pkgs/applications/backup/restic-integrity/default.nix +++ b/pkgs/applications/backup/restic-integrity/default.nix @@ -5,17 +5,17 @@ rustPlatform.buildRustPackage rec { pname = "restic-integrity"; - version = "1.2.1"; + version = "1.2.2"; src = fetchFromGitea { domain = "git.nwex.de"; owner = "networkException"; repo = "restic-integrity"; rev = version; - hash = "sha256-/n8muqW9ol0AY9RM3N4nqLDw0U1h0308M1uRCMS2kOM="; + hash = "sha256-QiISJCxxJH8wQeH/klB48POn6W9juQmIMCLGzGSyl6w="; }; - cargoHash = "sha256-TYDPzjWxTK9hQhzSknkCao9lq9UjZN3yQX3wtkMmP6E="; + cargoHash = "sha256-GxehJjDd0AHbEc8kPWyLXAOPbrPCT59LddAL1ydnT5g="; meta = with lib; { description = "CLI tool to check the integrity of a restic repository without unlocking it";