Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: af9e846bbaa4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c424c1161b10
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 22, 2018

  1. fetchurl: mirrors: http -> https, https before http, http before ftp

    Because HTTP has a higher probability of working behind proxies.
    oxij committed Nov 22, 2018
    Copy the full SHA
    8dcf831 View commit details

Commits on Nov 23, 2018

  1. Merge pull request #50560 from oxij/pkgs/fetchurl-mirrors

    fetchurl: mirrors: http -> https, https before http, http before ftp
    Mic92 authored Nov 23, 2018
    Copy the full SHA
    c424c11 View commit details
Showing with 15 additions and 15 deletions.
  1. +15 −15 pkgs/build-support/fetchurl/mirrors.nix
30 changes: 15 additions & 15 deletions pkgs/build-support/fetchurl/mirrors.nix
Original file line number Diff line number Diff line change
@@ -10,26 +10,26 @@ rec {

# SourceForge.
sourceforge = [
http://downloads.sourceforge.net/
http://prdownloads.sourceforge.net/
http://heanet.dl.sourceforge.net/sourceforge/
http://surfnet.dl.sourceforge.net/sourceforge/
http://dfn.dl.sourceforge.net/sourceforge/
http://osdn.dl.sourceforge.net/sourceforge/
http://kent.dl.sourceforge.net/sourceforge/
https://downloads.sourceforge.net/
https://prdownloads.sourceforge.net/
https://heanet.dl.sourceforge.net/sourceforge/
https://surfnet.dl.sourceforge.net/sourceforge/
https://dfn.dl.sourceforge.net/sourceforge/
https://osdn.dl.sourceforge.net/sourceforge/
https://kent.dl.sourceforge.net/sourceforge/
];

# SourceForge.jp.
sourceforgejp = [
http://osdn.dl.sourceforge.jp/
http://jaist.dl.sourceforge.jp/
https://osdn.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 = [
# This one redirects to a (supposedly) nearby and (supposedly) up-to-date
# mirror.
http://ftpmirror.gnu.org/
https://ftpmirror.gnu.org/

http://ftp.nluug.nl/pub/gnu/
http://mirrors.kernel.org/gnu/
@@ -157,12 +157,12 @@ rec {

# CPAN mirrors.
cpan = [
http://ftp.gwdg.de/pub/languages/perl/CPAN/
ftp://download.xs4all.nl/pub/mirror/CPAN/
https://ftp.gwdg.de/pub/languages/perl/CPAN/
https://download.xs4all.nl/mirror/CPAN/
https://cpan.metacpan.org/
https://cpan.perl.org/
http://ftp.tuwien.ac.at/pub/CPAN/
http://ftp.funet.fi/pub/CPAN/
https://cpan.metacpan.org/
http://cpan.perl.org/
http://backpan.perl.org/ # for old releases
];