2015-06-01 20:12:25 +01:00
|
|
|
{ stdenv, fetchurl, zlib, readline, libossp_uuid, openssl }:
|
2015-01-06 19:39:07 +00:00
|
|
|
|
2015-06-01 20:12:25 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2015-06-04 10:49:37 +01:00
|
|
|
let version = "9.4.2"; in
|
2015-06-01 20:12:25 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "postgresql-${version}";
|
2015-01-06 19:39:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-06-01 20:12:25 +01:00
|
|
|
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
2015-06-04 10:49:37 +01:00
|
|
|
sha256 = "04adpfg2f7ip96rh3jjygx5cpgasrrp1dl2wswjivfk5q68s3zc1";
|
2015-06-01 20:12:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zlib readline openssl ]
|
|
|
|
++ optionals (!stdenv.isDarwin) [ libossp_uuid ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
makeFlags = [ "world" ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-openssl" ]
|
|
|
|
++ optional (!stdenv.isDarwin) "--with-ossp-uuid";
|
|
|
|
|
|
|
|
patches = [ ./disable-resolve_symlinks-94.patch ./less-is-more.patch ];
|
|
|
|
|
|
|
|
installTargets = [ "install-world" ];
|
|
|
|
|
|
|
|
LC_ALL = "C";
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit readline;
|
|
|
|
psqlSchema = "9.4";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.postgresql.org/;
|
|
|
|
description = "A powerful, open source object-relational database system";
|
|
|
|
license = licenses.postgresql;
|
2015-06-04 10:16:44 +01:00
|
|
|
maintainers = [ maintainers.ocharles ];
|
2015-06-01 20:12:25 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
hydraPlatforms = platforms.linux;
|
2015-01-06 19:39:07 +00:00
|
|
|
};
|
2015-06-01 20:12:25 +01:00
|
|
|
}
|