* Postgres updated to 8.3.8 and 8.4.1. Dropped the "with args" and

"version" argument.  Added a few Postgres mirrors.

svn path=/nixpkgs/trunk/; revision=17804
This commit is contained in:
Eelco Dolstra
2009-10-14 14:38:16 +00:00
parent 18439774f8
commit c5b198300d
9 changed files with 58 additions and 79 deletions

View File

@@ -1,25 +0,0 @@
{stdenv, fetchurl, zlib, ncurses, readline}:
assert zlib != null;
assert ncurses != null;
assert readline != null;
stdenv.mkDerivation {
name = "postgresql-8.3.0";
src = fetchurl {
url = http://ftp2.nl.postgresql.org/source/v8.3.0/postgresql-8.3.0.tar.bz2;
sha256 = "19kf0q45d5zd1rxffin0iblizckk8cp6fpgb52sipqkpnmm6sdc5";
};
inherit readline;
buildInputs = [zlib ncurses readline];
LANG = "en_US"; # is this needed anymore?
meta = {
description = "The world's most advanced open source database";
homepage = http://www.postgresql.org/;
};
}