From 7b55233af3c90c6130a55c9cb394fc15d8bf194e Mon Sep 17 00:00:00 2001 From: Luflosi Date: Wed, 15 Dec 2021 01:21:16 +0100 Subject: [PATCH] mktorrent: fix link to homepage The SourceForge link is dead (404), replace it with a different link. Also change the GitHub owner from Rudde to pobrn as GitHub will automatically redirect otherwise and it would look weird if the link to the homepage had a different owner compared to the one in `fetchFromGitHub`. --- pkgs/tools/misc/mktorrent/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/mktorrent/default.nix b/pkgs/tools/misc/mktorrent/default.nix index 194a0c62721..089caac7884 100644 --- a/pkgs/tools/misc/mktorrent/default.nix +++ b/pkgs/tools/misc/mktorrent/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "1.1"; src = fetchFromGitHub { - owner = "Rudde"; + owner = "pobrn"; repo = "mktorrent"; rev = "v${version}"; sha256 = "17pdc5mandl739f8q26n5is8ga56s83aqcrwhlnnplbxwx2inidr"; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; meta = { - homepage = "http://mktorrent.sourceforge.net/"; + homepage = "https://github.com/pobrn/mktorrent/wiki"; license = lib.licenses.gpl2Plus; description = "Command line utility to create BitTorrent metainfo files"; maintainers = with lib.maintainers; [Profpatsch];