45 lines
1.1 KiB
Nix
Raw Normal View History

2015-03-23 18:41:55 +01:00
{ stdenv, fetchurl, zlib, readline, libossp_uuid, openssl}:
2014-01-18 16:17:29 +01:00
with stdenv.lib;
let version = "9.3.6"; in
2014-01-18 16:17:29 +01:00
stdenv.mkDerivation rec {
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
sha256 = "056ass7nnfyv7blv02anv795kgpz77gipdpxggd835cdwrhwns13";
2014-01-18 16:17:29 +01:00
};
2015-03-23 18:41:55 +01:00
buildInputs = [ zlib readline openssl ]
++ optionals (!stdenv.isDarwin) [ libossp_uuid ];
2014-01-18 16:17:29 +01:00
enableParallelBuilding = true;
makeFlags = [ "world" ];
2015-03-23 18:41:55 +01:00
configureFlags = [ "--with-openssl" ]
++ optional (!stdenv.isDarwin) "--with-ossp-uuid";
patches = [ ./disable-resolve_symlinks.patch ./less-is-more.patch ];
2014-01-18 16:17:29 +01:00
installTargets = [ "install-world" ];
LC_ALL = "C";
passthru = {
inherit readline;
psqlSchema = "9.3";
};
2015-05-23 13:49:45 -07:00
meta = with stdenv.lib; {
2014-01-18 16:17:29 +01:00
homepage = http://www.postgresql.org/;
description = "A powerful, open source object-relational database system";
2015-05-23 13:49:45 -07:00
license = licenses.postgresql;
maintainers = with maintaiers; [ ocharles ];
platforms = platforms.unix;
hydraPlatforms = platforms.linux;
2014-01-18 16:17:29 +01:00
};
}