nixpkgs/pkgs/servers/sql/postgresql/8.4.x.nix
Eelco Dolstra b2fa805948 * PostgreSQL updates.
svn path=/nixpkgs/trunk/; revision=25104
2010-12-13 19:02:49 +00:00

25 lines
559 B
Nix

{ stdenv, fetchurl, zlib, ncurses, readline }:
let version = "8.4.5"; in
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
sha256 = "1grjazzhk0piwpb0bjmgi71wkzb8hk27h6g9l68h52lr5np2401h";
};
buildInputs = [ zlib ncurses readline ];
LC_ALL = "C";
passthru = { inherit readline; };
meta = {
homepage = http://www.postgresql.org/;
description = "A powerful, open source object-relational database system";
license = "bsd";
};
}