nixpkgs/pkgs/servers/sql/postgresql/8.4.x.nix
Eelco Dolstra 071987601a postgresql: Update to latest versions
CVE-2013-1899, CVE-2013-1900, CVE-2013-1901.
2013-04-04 15:45:48 +02:00

25 lines
558 B
Nix

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