nixpkgs/pkgs/servers/sql/postgresql/default.nix

131 lines
3.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, glibc, fetchurl, zlib, readline, libossp_uuid, openssl, libxml2, makeWrapper }:
2015-07-28 19:37:27 +00:00
let
2016-11-22 21:48:18 +00:00
common = { version, sha256, psqlSchema } @ args:
let atLeast = lib.versionAtLeast version; in stdenv.mkDerivation (rec {
2015-07-28 19:37:27 +00:00
name = "postgresql-${version}";
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${name}.tar.bz2";
inherit sha256;
};
outputs = [ "out" "lib" "doc" "man" ];
setOutputFlags = false; # $out retains configureFlags :-/
2015-07-28 19:37:27 +00:00
buildInputs =
[ zlib readline openssl libxml2 makeWrapper ]
2015-07-28 19:37:27 +00:00
++ lib.optionals (!stdenv.isDarwin) [ libossp_uuid ];
enableParallelBuilding = true;
makeFlags = [ "world" ];
configureFlags = [
"--with-openssl"
"--with-libxml"
"--sysconfdir=/etc"
"--libdir=$(lib)/lib"
]
2015-07-28 19:37:27 +00:00
++ lib.optional (stdenv.isDarwin) "--with-uuid=e2fs"
++ lib.optional (!stdenv.isDarwin) "--with-ossp-uuid";
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)
./specify_pkglibdir_at_runtime.patch
2015-07-28 19:37:27 +00:00
];
installTargets = [ "install-world" ];
LC_ALL = "C";
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
substituteInPlace "${path}" --replace HARDCODED_PGXS_PATH $out/lib
'';
2015-07-28 19:37:27 +00:00
postInstall =
''
moveToOutput "lib/pgxs" "$out" # looks strange, but not deleting it
moveToOutput "lib/*.a" "$out"
moveToOutput "lib/libecpg*" "$out"
2015-07-28 19:37:27 +00:00
# Prevent a retained dependency on gcc-wrapper.
substituteInPlace "$out/lib/pgxs/src/Makefile.global" --replace ${stdenv.cc}/bin/ld ld
# 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
2015-07-28 19:37:27 +00:00
'';
2016-11-24 08:56:12 +00:00
postFixup = lib.optionalString (!stdenv.isDarwin)
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
'';
2015-07-28 19:37:27 +00:00
disallowedReferences = [ stdenv.cc ];
passthru = {
inherit readline psqlSchema;
};
meta = with lib; {
homepage = http://www.postgresql.org/;
description = "A powerful, open source object-relational database system";
license = licenses.postgresql;
maintainers = [ maintainers.ocharles ];
platforms = platforms.unix;
hydraPlatforms = platforms.linux;
};
});
in {
postgresql91 = common {
version = "9.1.24";
2015-07-28 19:37:27 +00:00
psqlSchema = "9.1";
sha256 = "1lz5ibvgz6cxprxlnd7a8iwv387idr7k53bdsvy4bw9ayglq83fy";
2015-07-28 19:37:27 +00:00
};
postgresql92 = common {
version = "9.2.21";
2015-07-28 19:37:27 +00:00
psqlSchema = "9.2";
sha256 = "0697e843523ee60c563f987f9c65bc4201294b18525d6e5e4b2c50c6d4058ef9";
2015-07-28 19:37:27 +00:00
};
postgresql93 = common {
version = "9.3.17";
2015-07-28 19:37:27 +00:00
psqlSchema = "9.3";
sha256 = "9c03e5f280cfe9bd202fa01af773eb146abd8ab3065f7279d574c568f6948dbe";
2015-07-28 19:37:27 +00:00
};
postgresql94 = common {
version = "9.4.12";
2015-07-28 19:37:27 +00:00
psqlSchema = "9.4";
sha256 = "fca055481875d1c49e31c28443f56472a1474b3fbe25b7ae64440c6118f82e64";
2015-07-28 19:37:27 +00:00
};
postgresql95 = common {
version = "9.5.7";
psqlSchema = "9.5";
sha256 = "8b1e936f82109325decc0f5575e846b93fb4fd384e8c4bde83ff5e7f87fc6cad";
};
2016-11-22 21:48:18 +00:00
postgresql96 = common {
version = "9.6.3";
2016-11-22 21:48:18 +00:00
psqlSchema = "9.6";
sha256 = "1645b3736901f6d854e695a937389e68ff2066ce0cde9d73919d6ab7c995b9c6";
2016-11-22 21:48:18 +00:00
};
2015-07-28 19:37:27 +00:00
}