* added postgresql 8.4.0
svn path=/nixpkgs/trunk/; revision=16956
This commit is contained in:
parent
edae4e83b0
commit
c0e46e52ba
14
pkgs/servers/sql/postgresql/8.4.0.nix
Normal file
14
pkgs/servers/sql/postgresql/8.4.0.nix
Normal 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];
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user