restic: Replace rec with finalAttrs; add djds@ to maintainers

This commit is contained in:
Davis Schirmer
2025-09-23 00:07:45 -04:00
parent bd8736b95b
commit 003ccb5827

View File

@@ -10,14 +10,14 @@
python3, python3,
}: }:
buildGoModule rec { buildGoModule (finalAttrs: {
pname = "restic"; pname = "restic";
version = "0.18.1"; version = "0.18.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "restic"; owner = "restic";
repo = "restic"; repo = "restic";
rev = "v${version}"; rev = "v${finalAttrs.version}";
hash = "sha256-lLinqZUOsZCPPybvVDB1f8o9Hl5qKYi0eHwJAaydsD8="; hash = "sha256-lLinqZUOsZCPPybvVDB1f8o9Hl5qKYi0eHwJAaydsD8=";
}; };
@@ -60,15 +60,16 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
homepage = "https://restic.net"; homepage = "https://restic.net";
changelog = "https://github.com/restic/restic/blob/${src.rev}/CHANGELOG.md"; changelog = "https://github.com/restic/restic/blob/${finalAttrs.src.rev}/CHANGELOG.md";
description = "Backup program that is fast, efficient and secure"; description = "Backup program that is fast, efficient and secure";
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
license = licenses.bsd2; license = licenses.bsd2;
maintainers = with maintainers; [ maintainers = with maintainers; [
mbrgm mbrgm
djds
dotlambda dotlambda
ryan4yin ryan4yin
]; ];
mainProgram = "restic"; mainProgram = "restic";
}; };
} })