3
0
Fork 0
forked from mirrors/nixpkgs

* Postgresql 8.3.0.

svn path=/nixpkgs/trunk/; revision=10699
This commit is contained in:
Eelco Dolstra 2008-02-15 07:08:05 +00:00
parent 86ec66baa1
commit 8022e84568

View file

@ -5,14 +5,21 @@ assert ncurses != null;
assert readline != null;
stdenv.mkDerivation {
name = "postgresql-8.2.6";
builder = ./builder.sh;
name = "postgresql-8.3.0";
src = fetchurl {
url = ftp://ftp.de.postgresql.org/mirror/postgresql/source/v8.2.6/postgresql-8.2.6.tar.bz2;
sha256="056ixbsfmdwhniryc0mr1kl66jywkqqhqvjdi7i3v4qzh9z34hgf";
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/;
};
}