restic-integrity: update src to fetch from git.nwex.de

the repository moved from gitlab.upi.li to git.nwex.de.
This commit is contained in:
networkException 2024-06-18 21:27:32 +02:00
parent 240648a162
commit b320638f61
No known key found for this signature in database
GPG Key ID: E3877443AE684391

View File

@ -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";