mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
fetchurl: mirrors: http -> https, https before http, http before ftp
Because HTTP has a higher probability of working behind proxies.
This commit is contained in:
parent
617132eba7
commit
8dcf831978
@ -10,26 +10,26 @@ rec {
|
|||||||
|
|
||||||
# SourceForge.
|
# SourceForge.
|
||||||
sourceforge = [
|
sourceforge = [
|
||||||
http://downloads.sourceforge.net/
|
https://downloads.sourceforge.net/
|
||||||
http://prdownloads.sourceforge.net/
|
https://prdownloads.sourceforge.net/
|
||||||
http://heanet.dl.sourceforge.net/sourceforge/
|
https://heanet.dl.sourceforge.net/sourceforge/
|
||||||
http://surfnet.dl.sourceforge.net/sourceforge/
|
https://surfnet.dl.sourceforge.net/sourceforge/
|
||||||
http://dfn.dl.sourceforge.net/sourceforge/
|
https://dfn.dl.sourceforge.net/sourceforge/
|
||||||
http://osdn.dl.sourceforge.net/sourceforge/
|
https://osdn.dl.sourceforge.net/sourceforge/
|
||||||
http://kent.dl.sourceforge.net/sourceforge/
|
https://kent.dl.sourceforge.net/sourceforge/
|
||||||
];
|
];
|
||||||
|
|
||||||
# SourceForge.jp.
|
# SourceForge.jp.
|
||||||
sourceforgejp = [
|
sourceforgejp = [
|
||||||
http://osdn.dl.sourceforge.jp/
|
https://osdn.dl.sourceforge.jp/
|
||||||
http://jaist.dl.sourceforge.jp/
|
https://jaist.dl.sourceforge.jp/
|
||||||
];
|
];
|
||||||
|
|
||||||
# GNU (http://www.gnu.org/prep/ftp.html).
|
# GNU (https://www.gnu.org/prep/ftp.html).
|
||||||
gnu = [
|
gnu = [
|
||||||
# This one redirects to a (supposedly) nearby and (supposedly) up-to-date
|
# This one redirects to a (supposedly) nearby and (supposedly) up-to-date
|
||||||
# mirror.
|
# mirror.
|
||||||
http://ftpmirror.gnu.org/
|
https://ftpmirror.gnu.org/
|
||||||
|
|
||||||
http://ftp.nluug.nl/pub/gnu/
|
http://ftp.nluug.nl/pub/gnu/
|
||||||
http://mirrors.kernel.org/gnu/
|
http://mirrors.kernel.org/gnu/
|
||||||
@ -157,12 +157,12 @@ rec {
|
|||||||
|
|
||||||
# CPAN mirrors.
|
# CPAN mirrors.
|
||||||
cpan = [
|
cpan = [
|
||||||
http://ftp.gwdg.de/pub/languages/perl/CPAN/
|
https://ftp.gwdg.de/pub/languages/perl/CPAN/
|
||||||
ftp://download.xs4all.nl/pub/mirror/CPAN/
|
https://download.xs4all.nl/mirror/CPAN/
|
||||||
|
https://cpan.metacpan.org/
|
||||||
|
https://cpan.perl.org/
|
||||||
http://ftp.tuwien.ac.at/pub/CPAN/
|
http://ftp.tuwien.ac.at/pub/CPAN/
|
||||||
http://ftp.funet.fi/pub/CPAN/
|
http://ftp.funet.fi/pub/CPAN/
|
||||||
https://cpan.metacpan.org/
|
|
||||||
http://cpan.perl.org/
|
|
||||||
http://backpan.perl.org/ # for old releases
|
http://backpan.perl.org/ # for old releases
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user