* Fix some broken URLs.

svn path=/nixpkgs/trunk/; revision=4622
This commit is contained in:
Eelco Dolstra
2006-01-30 15:52:15 +00:00
parent 37d1db32f0
commit 53c56afcfe
9 changed files with 16 additions and 25 deletions
+3 -3
View File
@@ -3,11 +3,11 @@
# Note: zlib is not required; MySQL can use an internal zlib.
stdenv.mkDerivation {
name = "mysql-4.1.12";
name = "mysql-4.1.16";
src = fetchurl {
url = http://mysql.mirror.nedlinux.nl/Downloads/MySQL-4.1/mysql-4.1.12.tar.gz;
md5 = "56a6f5cacd97ae290e07bbe19f279af1";
url = http://ftp.snt.utwente.nl/pub/software/mysql/Downloads/MySQL-4.1/mysql-4.1.16.tar.gz;
md5 = "13c5fdd05e28863db3a1261635890b5f";
};
buildInputs = [ps ncurses zlib perl];
+3 -3
View File
@@ -5,12 +5,12 @@ assert ncurses != null;
assert readline != null;
stdenv.mkDerivation {
name = "postgresql-8.0.3";
name = "postgresql-8.0.6";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp2.nl.postgresql.org/mirror/postgresql/source/v8.0.3/postgresql-8.0.3.tar.bz2;
md5 = "c0914a133ce6c1e0f1d8b93982d6e881";
url = ftp://ftp2.nl.postgresql.org/mirror/postgresql/source/v8.0.6/postgresql-8.0.6.tar.bz2;
md5 = "f3b27b8171267f9a87592f931c09f0ee";
};
inherit readline;