* 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

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;