2018-07-27 07:19:05 +01:00
|
|
|
{ lib, stdenv, glibc, fetchurl, zlib, readline, libossp_uuid, openssl, libxml2, makeWrapper, tzdata }:
|
2015-07-28 20:37:27 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2018-07-20 20:54:05 +01:00
|
|
|
common = { version, sha256, psqlSchema }:
|
2016-11-22 21:48:18 +00:00
|
|
|
let atLeast = lib.versionAtLeast version; in stdenv.mkDerivation (rec {
|
2015-07-28 20:37:27 +01:00
|
|
|
name = "postgresql-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2017-09-27 20:48:39 +01:00
|
|
|
outputs = [ "out" "lib" "doc" "man" ];
|
2015-10-14 04:47:54 +01:00
|
|
|
setOutputFlags = false; # $out retains configureFlags :-/
|
2015-07-28 20:37:27 +01:00
|
|
|
|
|
|
|
buildInputs =
|
2018-07-27 07:19:05 +01:00
|
|
|
[ zlib readline openssl libxml2 makeWrapper ]
|
2015-07-28 20:37:27 +01:00
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ libossp_uuid ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
makeFlags = [ "world" ];
|
|
|
|
|
2018-07-27 07:12:25 +01:00
|
|
|
preConfigure = ''
|
2018-07-29 14:21:46 +01:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2.dev}/include/libxml2"
|
2018-07-27 07:12:25 +01:00
|
|
|
'';
|
2015-10-14 04:47:54 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-openssl"
|
2017-07-15 14:58:17 +01:00
|
|
|
"--with-libxml"
|
2015-10-14 04:47:54 +01:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--libdir=$(lib)/lib"
|
2018-07-30 04:54:57 +01:00
|
|
|
"--with-system-tzdata=${tzdata}"
|
2018-07-30 08:47:10 +01:00
|
|
|
] ++ (
|
|
|
|
if stdenv.isDarwin then [ "--with-uuid=e2fs" ] else [ "--with-ossp-uuid" ]
|
|
|
|
);
|
2015-07-28 20:37:27 +01:00
|
|
|
|
|
|
|
patches =
|
2016-11-22 21:48:18 +00:00
|
|
|
[ (if atLeast "9.4" then ./disable-resolve_symlinks-94.patch else ./disable-resolve_symlinks.patch)
|
|
|
|
(if atLeast "9.6" then ./less-is-more-96.patch else ./less-is-more.patch)
|
|
|
|
(if atLeast "9.6" then ./hardcode-pgxs-path-96.patch else ./hardcode-pgxs-path.patch)
|
2016-08-19 08:06:40 +01:00
|
|
|
./specify_pkglibdir_at_runtime.patch
|
2015-07-28 20:37:27 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
installTargets = [ "install-world" ];
|
|
|
|
|
|
|
|
LC_ALL = "C";
|
|
|
|
|
2016-05-15 01:37:10 +01:00
|
|
|
postConfigure =
|
2016-11-22 21:48:18 +00:00
|
|
|
let path = if atLeast "9.6" then "src/common/config_info.c" else "src/bin/pg_config/pg_config.c"; in
|
|
|
|
''
|
|
|
|
# Hardcode the path to pgxs so pg_config returns the path in $out
|
2017-09-27 20:48:39 +01:00
|
|
|
substituteInPlace "${path}" --replace HARDCODED_PGXS_PATH $out/lib
|
2016-11-22 21:48:18 +00:00
|
|
|
'';
|
2016-05-15 01:37:10 +01:00
|
|
|
|
2015-07-28 20:37:27 +01:00
|
|
|
postInstall =
|
|
|
|
''
|
2017-09-27 20:48:39 +01:00
|
|
|
moveToOutput "lib/pgxs" "$out" # looks strange, but not deleting it
|
2015-12-02 09:03:23 +00:00
|
|
|
moveToOutput "lib/*.a" "$out"
|
|
|
|
moveToOutput "lib/libecpg*" "$out"
|
2015-10-14 04:47:54 +01:00
|
|
|
|
2017-09-27 20:48:39 +01:00
|
|
|
# Prevent a retained dependency on gcc-wrapper.
|
|
|
|
substituteInPlace "$out/lib/pgxs/src/Makefile.global" --replace ${stdenv.cc}/bin/ld ld
|
|
|
|
|
2018-01-11 14:19:46 +00:00
|
|
|
if [ -z "''${dontDisableStatic:-}" ]; then
|
|
|
|
# Remove static libraries in case dynamic are available.
|
|
|
|
for i in $out/lib/*.a; do
|
|
|
|
name="$(basename "$i")"
|
|
|
|
if [ -e "$lib/lib/''${name%.a}.so" ] || [ -e "''${i%.a}.so" ]; then
|
|
|
|
rm "$i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2015-07-28 20:37:27 +01:00
|
|
|
'';
|
|
|
|
|
2018-01-12 04:27:55 +00:00
|
|
|
postFixup = lib.optionalString (!stdenv.isDarwin && stdenv.hostPlatform.libc == "glibc")
|
2016-11-22 21:48:18 +00:00
|
|
|
''
|
|
|
|
# initdb needs access to "locale" command from glibc.
|
|
|
|
wrapProgram $out/bin/initdb --prefix PATH ":" ${glibc.bin}/bin
|
|
|
|
'';
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doInstallCheck = false; # needs a running daemon?
|
|
|
|
|
2015-07-28 20:37:27 +01:00
|
|
|
disallowedReferences = [ stdenv.cc ];
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit readline psqlSchema;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
2017-08-22 19:50:04 +01:00
|
|
|
homepage = https://www.postgresql.org;
|
2015-07-28 20:37:27 +01:00
|
|
|
description = "A powerful, open source object-relational database system";
|
|
|
|
license = licenses.postgresql;
|
|
|
|
maintainers = [ maintainers.ocharles ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
postgresql93 = common {
|
2018-07-20 16:15:43 +01:00
|
|
|
version = "9.3.23";
|
2015-07-28 20:37:27 +01:00
|
|
|
psqlSchema = "9.3";
|
2018-07-20 16:15:43 +01:00
|
|
|
sha256 = "1jzncs7b6zrcgpnqjbjcc4y8303a96zqi3h31d3ix1g3vh31160x";
|
2015-07-28 20:37:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postgresql94 = common {
|
2018-07-20 16:16:06 +01:00
|
|
|
version = "9.4.18";
|
2015-07-28 20:37:27 +01:00
|
|
|
psqlSchema = "9.4";
|
2018-07-20 16:16:06 +01:00
|
|
|
sha256 = "1h64yjyrlz3ppsp9k6sm4jihg6n9i7mqhkx4p0hymqzmnbr3g0s2";
|
2015-07-28 20:37:27 +01:00
|
|
|
};
|
|
|
|
|
2016-01-08 15:47:03 +00:00
|
|
|
postgresql95 = common {
|
2018-07-20 16:16:30 +01:00
|
|
|
version = "9.5.13";
|
2016-01-08 15:47:03 +00:00
|
|
|
psqlSchema = "9.5";
|
2018-07-20 16:16:30 +01:00
|
|
|
sha256 = "1vm55q9apja6lg672m9xl1zq3iwv2zwnn0d0qr003zan1dmbh22l";
|
2016-01-08 15:47:03 +00:00
|
|
|
};
|
|
|
|
|
2016-11-22 21:48:18 +00:00
|
|
|
postgresql96 = common {
|
2018-07-20 16:16:47 +01:00
|
|
|
version = "9.6.9";
|
2016-11-22 21:48:18 +00:00
|
|
|
psqlSchema = "9.6";
|
2018-07-20 16:16:47 +01:00
|
|
|
sha256 = "0biy8j69dbvdmrag55pdszpc0702agzqhhcwdx21xp02mzim4ydr";
|
2016-11-22 21:48:18 +00:00
|
|
|
};
|
2016-01-08 15:47:03 +00:00
|
|
|
|
2017-10-06 23:50:44 +01:00
|
|
|
postgresql100 = common {
|
2018-07-20 16:16:58 +01:00
|
|
|
version = "10.4";
|
2017-10-06 23:50:44 +01:00
|
|
|
psqlSchema = "10.0";
|
2018-07-20 16:16:58 +01:00
|
|
|
sha256 = "0j000bcs9w8wrllg8m7j1lxsd3n2x0yzkack5p35cmxx20iq2q0v";
|
2017-10-06 23:50:44 +01:00
|
|
|
};
|
|
|
|
|
2015-07-28 20:37:27 +01:00
|
|
|
}
|