summary refs log tree commit diff
path: root/pkgs/tools/misc/tmpwatch
diff options
context:
space:
mode:
authorD Anzorge <d.anzorge@gmail.com>2021-10-15 05:11:42 +0200
committerGitHub <noreply@github.com>2021-10-15 06:11:42 +0300
commit4e42c3008c787cacbf110b5ccb0aaf84935b020f (patch)
tree2bb60eb715c9e81c1ec4e18e1700a00653116698 /pkgs/tools/misc/tmpwatch
parenta3cd66ba9537569fad799d81a24e9141af9583d9 (diff)
downloadnixpkgs-4e42c3008c787cacbf110b5ccb0aaf84935b020f.tar
nixpkgs-4e42c3008c787cacbf110b5ccb0aaf84935b020f.tar.gz
nixpkgs-4e42c3008c787cacbf110b5ccb0aaf84935b020f.tar.bz2
nixpkgs-4e42c3008c787cacbf110b5ccb0aaf84935b020f.tar.lz
nixpkgs-4e42c3008c787cacbf110b5ccb0aaf84935b020f.tar.xz
nixpkgs-4e42c3008c787cacbf110b5ccb0aaf84935b020f.tar.zst
nixpkgs-4e42c3008c787cacbf110b5ccb0aaf84935b020f.zip
treewide: clean up fedorahosted.org URLs (#139977)
Diffstat (limited to 'pkgs/tools/misc/tmpwatch')
-rw-r--r--pkgs/tools/misc/tmpwatch/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/tmpwatch/default.nix b/pkgs/tools/misc/tmpwatch/default.nix
index 7389e0c4c59..9d9bb853f2f 100644
--- a/pkgs/tools/misc/tmpwatch/default.nix
+++ b/pkgs/tools/misc/tmpwatch/default.nix
@@ -5,14 +5,14 @@ stdenv.mkDerivation rec {
   version = "2.11";
 
   src = fetchurl {
-    url = "https://fedorahosted.org/releases/t/m/tmpwatch/tmpwatch-${version}.tar.bz2";
+    url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.bz2";
     sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk";
   };
 
   configureFlags = [ "--with-fuser=${psmisc}/bin/fuser" ];
 
   meta = with lib; {
-    homepage = "https://fedorahosted.org/tmpwatch/";
+    homepage = "https://pagure.io/tmpwatch";
     description = "Recursively searches through specified directories and removes files which have not been accessed in a specified period of time";
     license = licenses.gpl2;
     maintainers = with maintainers; [ vlstill ];