about summary refs log tree commit diff
path: root/pkgs/tools/misc/mktorrent
diff options
context:
space:
mode:
authorLuflosi <luflosi@luflosi.de>2021-12-15 01:21:16 +0100
committerLuflosi <luflosi@luflosi.de>2021-12-15 01:28:13 +0100
commit7b55233af3c90c6130a55c9cb394fc15d8bf194e (patch)
treedf565eabe4a3315406df3f9a04b7ad250158565f /pkgs/tools/misc/mktorrent
parent9482691069501f408fc77d66278599ca50749c80 (diff)
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`.
Diffstat (limited to 'pkgs/tools/misc/mktorrent')
-rw-r--r--pkgs/tools/misc/mktorrent/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/mktorrent/default.nix b/pkgs/tools/misc/mktorrent/default.nix
index 194a0c62721d1..089caac7884a5 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];