diff options
author | Andreas Enge <andreas@enge.fr> | 2013-02-23 18:59:43 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-02-23 19:01:19 +0100 |
commit | 149acc2981d8580d9fd258e6c47a16bacfa67cb7 (patch) | |
tree | a3dee8645c281a1830d7e62d3fdcf5aa846f3ab1 /guix | |
parent | abc00dc492efc9309aa721b63cb2f2883dbba3c6 (diff) |
download: Add X.org mirrors.
* guix/download.scm (%mirrors): Add `xorg'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/download.scm | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/guix/download.scm b/guix/download.scm index 846c9e1e0b..3caba5f924 100644 --- a/guix/download.scm +++ b/guix/download.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -98,7 +99,38 @@ "ftp://gd.tuwien.ac.at/pub/infosys/servers/http/apache/dist/" "http://apache.belnet.be/" "http://mirrors.ircam.fr/pub/apache/" - "http://apache-mirror.rbc.ru/pub/apache/")))) + "http://apache-mirror.rbc.ru/pub/apache/") + (xorg ; from http://www.x.org/wiki/Releases/Download + "http://xorg.freedesktop.org/releases/" ; main mirrors + "http://www.x.org/pub/" + "ftp://mirror.csclub.uwaterloo.ca/x.org/" ; North America + "ftp://xorg.mirrors.pair.com/" + "http://mirror.csclub.uwaterloo.ca/x.org/" + "http://xorg.mirrors.pair.com/" + "http://mirror.us.leaseweb.net/xorg/" + "ftp://artfiles.org/x.org/" ; Europe + "ftp://ftp.chg.ru/pub/X11/x.org/" + "ftp://ftp.fu-berlin.de/unix/X11/FTP.X.ORG/" + "ftp://ftp.gwdg.de/pub/x11/x.org/" + "ftp://ftp.mirrorservice.org/sites/ftp.x.org/" + "ftp://ftp.ntua.gr/pub/X11/" + "ftp://ftp.piotrkosoft.net/pub/mirrors/ftp.x.org/" + "ftp://ftp.portal-to-web.de/pub/mirrors/x.org/" + "ftp://ftp.solnet.ch/mirror/x.org/" + "ftp://ftp.sunet.se/pub/X11/" + "ftp://gd.tuwien.ac.at/X11/" + "ftp://mi.mirror.garr.it/mirrors/x.org/" + "ftp://mirror.cict.fr/x.org/" + "ftp://mirror.switch.ch/mirror/X11/" + "ftp://mirrors.ircam.fr/pub/x.org/" + "ftp://x.mirrors.skynet.be/pub/ftp.x.org/" + "ftp://ftp.cs.cuhk.edu.hk/pub/X11" ; East Asia + "ftp://ftp.u-aizu.ac.jp/pub/x11/x.org/" + "ftp://ftp.yz.yamagata-u.ac.jp/pub/X11/x.org/" + "ftp://ftp.kaist.ac.kr/x.org/" + "ftp://mirrors.go-part.com/xorg/" + "http://x.cs.pu.edu.tw/" + "ftp://ftp.is.co.za/pub/x.org")))) ; South Africa (define (gnutls-derivation store system) "Return the GnuTLS derivation for SYSTEM." |