mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
treewide: clean up fedorahosted.org URLs (#139977)
This commit is contained in:
parent
a3cd66ba95
commit
4e42c3008c
|
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
|||
version = "0.52.21";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://fedorahosted.org/releases/n/e/${pname}/${pname}-${version}.tar.gz";
|
||||
url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0cdvbancr7y4nrj8257y5n45hmhizr8isynagy4fpsnpammv8pi6";
|
||||
};
|
||||
|
||||
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://fedorahosted.org/newt/";
|
||||
homepage = "https://pagure.io/newt";
|
||||
description = "Library for color text mode, widget based user interfaces";
|
||||
|
||||
license = licenses.lgpl2;
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchgit }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "numad";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://git.fedorahosted.org/cgit/numad.git/snapshot/numad-${version}.tar.xz";
|
||||
sha256 = "08zd1yc3w00yv4mvvz5sq1gf91f6p2s9ljcd72m33xgnkglj60v4";
|
||||
src = fetchgit {
|
||||
url = "https://pagure.io/numad.git";
|
||||
rev = "334278ff3d774d105939743436d7378a189e8693";
|
||||
sha256 = "sha256-6nrbfooUI1ufJhsPf68li5584oKQcznXQlxfpStuX5I=";
|
||||
};
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
|
|
@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
|
|||
version = "0.6.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://fedorahosted.org/released/ding-libs/ding-libs-${version}.tar.gz";
|
||||
url = "https://releases.pagure.org/SSSD/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3";
|
||||
};
|
||||
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = {
|
||||
description = "'D is not GLib' utility libraries";
|
||||
homepage = "https://fedorahosted.org/sssd/";
|
||||
homepage = "https://pagure.io/SSSD/ding-libs";
|
||||
platforms = with lib.platforms; linux;
|
||||
maintainers = with lib.maintainers; [ e-user ];
|
||||
license = [ lib.licenses.gpl3 lib.licenses.lgpl3 ];
|
||||
|
|
|
@ -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 ];
|
||||
|
|
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ popt ] ++ lib.optionals aclSupport [ acl ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://fedorahosted.org/releases/l/o/logrotate/";
|
||||
homepage = "https://github.com/logrotate/logrotate";
|
||||
description = "Rotates and compresses system logs";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.viric ];
|
||||
|
|
|
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
license = lib.licenses.gpl2Plus;
|
||||
homepage = "https://fedorahosted.org/xmlto/";
|
||||
homepage = "https://pagure.io/xmlto/";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue