nixpkgs/pkgs/servers/sql/postgresql/8.3.x.nix
2012-12-11 14:08:41 +01:00

25 lines
562 B
Nix

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