nixpkgs/pkgs/servers/sql/postgresql/8.3.x.nix
Eelco Dolstra 6c13f317e9 * Latest PostgreSQL releases.
svn path=/nixpkgs/trunk/; revision=32684
2012-02-28 18:40:27 +00:00

25 lines
564 B
Nix

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