nixpkgs/pkgs/servers/sql/postgresql/8.4.x.nix
Eelco Dolstra 91184831a9 * Using the en_US locale gives a lot of warnings (because we don't
have it without glibc-locales).

svn path=/nixpkgs/trunk/; revision=19940
2010-02-11 16:18:14 +00:00

25 lines
557 B
Nix

{ stdenv, fetchurl, zlib, ncurses, readline }:
let version = "8.4.2"; in
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
sha256 = "1wk9k1nsz304c8mxrx4iix1ss38fpp13by46x5v5s6cn0g4wbcxd";
};
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";
};
}