* mirror://apache/.

svn path=/nixpkgs/trunk/; revision=12968
This commit is contained in:
Eelco Dolstra 2008-10-06 12:58:21 +00:00
parent 4138945727
commit 9fdecb1296
2 changed files with 9 additions and 1 deletions

View file

@ -220,4 +220,12 @@ rec {
http://ftp.x.org/pub/ # often incomplete (e.g. files missing from X.org 7.4)
];
# Apache mirrors.
apache = [
http://apache.cs.uu.nl/dist/
http://www.eu.apache.org/dist/
http://www.apache.org/dist/
http://archive.apache.org/dist/ # fallback for old releases
];
}

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation {
name = "apache-httpd-2.2.9";
src = fetchurl {
url = http://archive.apache.org/dist/httpd/httpd-2.2.9.tar.bz2;
url = mirror://apache/httpd/httpd-2.2.9.tar.bz2;
md5 = "3afa8137dc1999be695a20b62fdf032b";
};