mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
* Add ftp-archives.postgresql.org as a fallback for PostgreSQL
downloads. * PostgreSQL updated to 8.3.11, 8.4.4. svn path=/nixpkgs/trunk/; revision=22365
This commit is contained in:
parent
99a94a777b
commit
12ede4793f
@ -244,6 +244,7 @@ rec {
|
||||
http://ftp2.nl.postgresql.org/
|
||||
ftp://ftp.nl.postgresql.org/pub/mirror/postgresql/
|
||||
ftp://ftp.postgresql.org/pub/
|
||||
ftp://ftp-archives.postgresql.org/pub/
|
||||
];
|
||||
|
||||
}
|
||||
|
@ -1,16 +1,16 @@
|
||||
{ stdenv, fetchurl, zlib, ncurses, readline }:
|
||||
|
||||
let version = "8.3.9"; in
|
||||
let version = "8.3.11"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256 = "08z6p3hha0v5841kzz5mhz1gsyvriijssx5p8bah8cvw4i00xcaw";
|
||||
sha256 = "1nvjcsa0218849r2913mxia58cjgcw6rikkf1g7kmjb902lv3aw1";
|
||||
};
|
||||
|
||||
buildInputs = [zlib ncurses readline];
|
||||
buildInputs = [ zlib ncurses readline ];
|
||||
|
||||
LC_ALL = "en_US";
|
||||
|
||||
|
@ -1,16 +1,16 @@
|
||||
{ stdenv, fetchurl, zlib, ncurses, readline }:
|
||||
|
||||
let version = "8.4.2"; in
|
||||
let version = "8.4.4"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256 = "1wk9k1nsz304c8mxrx4iix1ss38fpp13by46x5v5s6cn0g4wbcxd";
|
||||
sha256 = "0zp35f0q84id3jz2nlwgp2qxplywh4lfg2p5i9nv2zszas6kjsz6";
|
||||
};
|
||||
|
||||
buildInputs = [zlib ncurses readline];
|
||||
buildInputs = [ zlib ncurses readline ];
|
||||
|
||||
LC_ALL = "C";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user