mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
* Postgresql 8.3.0.
svn path=/nixpkgs/trunk/; revision=10699
This commit is contained in:
parent
86ec66baa1
commit
8022e84568
@ -5,14 +5,21 @@ assert ncurses != null;
|
|||||||
assert readline != null;
|
assert readline != null;
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "postgresql-8.2.6";
|
name = "postgresql-8.3.0";
|
||||||
builder = ./builder.sh;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.de.postgresql.org/mirror/postgresql/source/v8.2.6/postgresql-8.2.6.tar.bz2;
|
url = http://ftp2.nl.postgresql.org/source/v8.3.0/postgresql-8.3.0.tar.bz2;
|
||||||
sha256="056ixbsfmdwhniryc0mr1kl66jywkqqhqvjdi7i3v4qzh9z34hgf";
|
sha256 = "19kf0q45d5zd1rxffin0iblizckk8cp6fpgb52sipqkpnmm6sdc5";
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit readline;
|
inherit readline;
|
||||||
|
|
||||||
buildInputs = [zlib ncurses 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/;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user