Skip to content

Commit

Permalink
restic-integrity: update src to fetch from git.nwex.de
Browse files Browse the repository at this point in the history
the repository moved from gitlab.upi.li to git.nwex.de.

(cherry picked from commit b320638)
  • Loading branch information
networkException committed Aug 2, 2024
1 parent f35679d commit 0bfd349
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/applications/backup/restic-integrity/default.nix
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -18,7 +19,7 @@ rustPlatform.buildRustPackage rec {

meta = with lib; {
description = "A 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";
Expand Down

0 comments on commit 0bfd349

Please sign in to comment.