* added postgresql 8.4.0

svn path=/nixpkgs/trunk/; revision=16956
This commit is contained in:
Rob Vermaas 2009-09-04 12:55:03 +00:00
parent edae4e83b0
commit c0e46e52ba
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,14 @@
args: with args;
stdenv.mkDerivation rec {
name = "postgresql-" + version;
LC_ALL = "en_US";
src = fetchurl {
url = "ftp://ftp.nl.postgresql.org/pub/mirror/postgresql/source/v${version}/${name}.tar.bz2";
sha256="01z00pgp2dmp02dq6hnsidzvkp19gwjby0xvfpwgvd2xljs57gw4";
};
passthru = { inherit readline; };
buildInputs = [zlib ncurses readline];
}

View File

@ -4658,6 +4658,10 @@ let
inherit fetchurl stdenv readline ncurses zlib;
};
postgresql84 = selectVersion ../servers/sql/postgresql "8.4.0" {
inherit fetchurl stdenv readline ncurses zlib;
};
postgresql_jdbc = import ../servers/sql/postgresql/jdbc {
inherit fetchurl stdenv ant;
};