nixpkgs/pkgs/servers/sql/postgresql/8.3.x.nix
Eelco Dolstra a5a5dcde90 * Updated PostgreSQL.
svn path=/nixpkgs/trunk/; revision=30162
2011-11-01 14:37:27 +00:00

25 lines
564 B
Nix

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