2015-07-28 21:37:27 +02:00
let
2019-01-26 18:46:57 +01:00
generic =
# dependencies
{ stdenv , lib , fetchurl , makeWrapper
2020-02-19 07:59:50 +01:00
, glibc , zlib , readline , openssl , icu , systemd , libossp_uuid
2019-01-26 18:46:57 +01:00
, pkgconfig , libxml2 , tzdata
2019-07-21 21:13:06 +02:00
# This is important to obtain a version of `libpq` that does not depend on systemd.
2019-07-23 05:08:28 +02:00
, enableSystemd ? ( lib . versionAtLeast version " 9 . 6 " && ! stdenv . isDarwin )
2019-07-21 21:13:06 +02:00
2019-01-26 18:46:57 +01:00
# for postgreql.pkgs
, this , self , newScope , buildEnv
# source specification
, version , sha256 , psqlSchema
} :
2018-12-08 06:32:26 +01:00
let
atLeast = lib . versionAtLeast version ;
icuEnabled = atLeast " 1 0 " ;
2019-01-26 18:46:57 +01:00
in stdenv . mkDerivation rec {
2019-08-15 14:41:18 +02:00
pname = " p o s t g r e s q l " ;
2018-11-27 20:16:21 +01:00
inherit version ;
2015-07-28 21:37:27 +02:00
src = fetchurl {
2019-08-15 14:41:18 +02:00
url = " m i r r o r : / / p o s t g r e s q l / s o u r c e / v ${ version } / ${ pname } - ${ version } . t a r . b z 2 " ;
2015-07-28 21:37:27 +02:00
inherit sha256 ;
} ;
2017-09-27 21:48:39 +02:00
outputs = [ " o u t " " l i b " " d o c " " m a n " ] ;
2015-10-14 05:47:54 +02:00
setOutputFlags = false ; # $out retains configureFlags :-/
2015-07-28 21:37:27 +02:00
buildInputs =
2020-02-19 07:59:50 +01:00
[ zlib readline openssl libxml2 makeWrapper ]
2018-12-08 06:32:26 +01:00
++ lib . optionals icuEnabled [ icu ]
2019-07-21 21:13:06 +02:00
++ lib . optionals enableSystemd [ systemd ]
2015-07-28 21:37:27 +02:00
++ lib . optionals ( ! stdenv . isDarwin ) [ libossp_uuid ] ;
2018-12-08 06:32:26 +01:00
nativeBuildInputs = lib . optionals icuEnabled [ pkgconfig ] ;
2018-11-27 21:13:23 +01:00
enableParallelBuilding = ! stdenv . isDarwin ;
2015-07-28 21:37:27 +02:00
2019-05-31 04:30:15 +02:00
buildFlags = [ " w o r l d " ] ;
2015-07-28 21:37:27 +02:00
2019-10-30 01:40:49 +01:00
NIX_CFLAGS_COMPILE = " - I ${ libxml2 . dev } / i n c l u d e / l i b x m l 2 " ;
2018-07-31 05:23:17 +02:00
2018-08-19 09:07:00 +02:00
# Otherwise it retains a reference to compiler and fails; see #44767. TODO: better.
2018-08-20 10:07:27 +02:00
preConfigure = " C C = ${ stdenv . cc . targetPrefix } c c " ;
2018-08-19 09:07:00 +02:00
2015-10-14 05:47:54 +02:00
configureFlags = [
" - - w i t h - o p e n s s l "
2017-07-15 15:58:17 +02:00
" - - w i t h - l i b x m l "
2015-10-14 05:47:54 +02:00
" - - s y s c o n f d i r = / e t c "
" - - l i b d i r = $ ( l i b ) / l i b "
2018-08-11 20:06:13 +02:00
" - - w i t h - s y s t e m - t z d a t a = ${ tzdata } / s h a r e / z o n e i n f o "
2019-07-21 21:13:06 +02:00
( lib . optionalString enableSystemd " - - w i t h - s y s t e m d " )
2018-08-02 22:22:42 +02:00
( if stdenv . isDarwin then " - - w i t h - u u i d = e 2 f s " else " - - w i t h - o s s p - u u i d " )
2018-12-08 06:32:26 +01:00
] ++ lib . optionals icuEnabled [ " - - w i t h - i c u " ] ;
2015-07-28 21:37:27 +02:00
patches =
2018-08-06 17:17:49 +02:00
[ ( if atLeast " 9 . 4 " then ./patches/disable-resolve_symlinks-94.patch else ./patches/disable-resolve_symlinks.patch )
( if atLeast " 9 . 6 " then ./patches/less-is-more-96.patch else ./patches/less-is-more.patch )
( if atLeast " 9 . 6 " then ./patches/hardcode-pgxs-path-96.patch else ./patches/hardcode-pgxs-path.patch )
./patches/specify_pkglibdir_at_runtime.patch
2019-05-31 04:30:15 +02:00
./patches/findstring.patch
2019-03-16 12:28:20 +01:00
] ++ lib . optional stdenv . isLinux ./patches/socketdir-in-run.patch ;
2015-07-28 21:37:27 +02:00
installTargets = [ " i n s t a l l - w o r l d " ] ;
LC_ALL = " C " ;
2016-05-15 02:37:10 +02:00
postConfigure =
2016-11-22 22:48:18 +01:00
let path = if atLeast " 9 . 6 " then " s r c / c o m m o n / c o n f i g _ i n f o . c " else " s r c / b i n / p g _ c o n f i g / p g _ c o n f i g . c " ; in
''
# Hardcode the path to pgxs so pg_config returns the path in $out
2017-09-27 21:48:39 +02:00
substituteInPlace " ${ path } " - - replace HARDCODED_PGXS_PATH $ out/lib
2016-11-22 22:48:18 +01:00
'' ;
2016-05-15 02:37:10 +02:00
2015-07-28 21:37:27 +02:00
postInstall =
''
2017-09-27 21:48:39 +02:00
moveToOutput " l i b / p g x s " " $ o u t " # looks strange, but not deleting it
2019-10-04 01:00:00 +02:00
moveToOutput " l i b / l i b p g c o m m o n * . a " " $ o u t "
moveToOutput " l i b / l i b p g p o r t * . a " " $ o u t "
2015-12-02 10:03:23 +01:00
moveToOutput " l i b / l i b e c p g * " " $ o u t "
2015-10-14 05:47:54 +02:00
2017-09-27 21:48:39 +02:00
# Prevent a retained dependency on gcc-wrapper.
substituteInPlace " $ o u t / l i b / p g x s / s r c / M a k e f i l e . g l o b a l " - - replace $ { stdenv . cc } /bin/ld ld
2018-01-11 15:19:46 +01:00
if [ - z " ' ' ${ dontDisableStatic:- } " ] ; then
# Remove static libraries in case dynamic are available.
2019-02-19 02:31:09 +01:00
for i in $ out/lib /* . a $ l i b / l i b / * . a ; d o
2018-01-11 15:19:46 +01:00
name = " $ ( b a s e n a m e " $ i " ) "
2018-11-28 02:33:57 +01:00
ext = " ${ stdenv . hostPlatform . extensions . sharedLibrary } "
if [ - e " $ l i b / l i b / ' ' ${ name % . a } $ e x t " ] || [ - e " ' ' ${ i % . a } $ e x t " ] ; then
2018-01-11 15:19:46 +01:00
rm " $ i "
fi
done
fi
2015-07-28 21:37:27 +02:00
'' ;
2018-01-12 05:27:55 +01:00
postFixup = lib . optionalString ( ! stdenv . isDarwin && stdenv . hostPlatform . libc == " g l i b c " )
2016-11-22 22:48:18 +01:00
''
# initdb needs access to "locale" command from glibc.
wrapProgram $ out/bin/initdb - - prefix PATH " : " $ { glibc . bin } /bin
'' ;
2019-06-06 06:18:38 +02:00
doCheck = ! stdenv . isDarwin ;
2019-05-12 21:40:22 +02:00
# autodetection doesn't seem to able to find this, but it's there.
checkTarget = " c h e c k " ;
2019-10-26 00:31:49 +02:00
preCheck =
# On musl, comment skip the following tests, because they break due to
# ! ERROR: could not load library "/build/postgresql-11.5/tmp_install/nix/store/...-postgresql-11.5-lib/lib/libpqwalreceiver.so": Error loading shared library libpq.so.5: No such file or directory (needed by /build/postgresql-11.5/tmp_install/nix/store/...-postgresql-11.5-lib/lib/libpqwalreceiver.so)
# See also here:
# https://git.alpinelinux.org/aports/tree/main/postgresql/disable-broken-tests.patch?id=6d7d32c12e073a57a9e5946e55f4c1fbb68bd442
if stdenv . hostPlatform . isMusl then ''
substituteInPlace src/test/regress/parallel_schedule \
- - replace " s u b s c r i p t i o n " " " \
- - replace " o b j e c t _ a d d r e s s " " "
'' e l s e n u l l ;
2018-04-25 05:20:18 +02:00
doInstallCheck = false ; # needs a running daemon?
2015-07-28 21:37:27 +02:00
disallowedReferences = [ stdenv . cc ] ;
passthru = {
2020-04-23 17:08:45 +02:00
inherit readline psqlSchema ;
2019-01-26 18:46:57 +01:00
pkgs = let
scope = { postgresql = this ; } ;
newSelf = self // scope ;
newSuper = { callPackage = newScope ( scope // this . pkgs ) ; } ;
in import ./packages.nix newSelf newSuper ;
withPackages = postgresqlWithPackages {
inherit makeWrapper buildEnv ;
postgresql = this ;
}
this . pkgs ;
2015-07-28 21:37:27 +02:00
} ;
meta = with lib ; {
2020-04-01 03:11:51 +02:00
homepage = " h t t p s : / / w w w . p o s t g r e s q l . o r g " ;
2015-07-28 21:37:27 +02:00
description = " A p o w e r f u l , o p e n s o u r c e o b j e c t - r e l a t i o n a l d a t a b a s e s y s t e m " ;
2018-11-02 19:31:20 +01:00
license = licenses . postgresql ;
2019-08-20 19:36:05 +02:00
maintainers = with maintainers ; [ ocharles thoughtpolice danbst globin ] ;
2018-11-02 19:31:20 +01:00
platforms = platforms . unix ;
2018-12-17 16:33:18 +01:00
knownVulnerabilities = optional ( ! atLeast " 9 . 4 " )
" P o s t g r e S Q L v e r s i o n s o l d e r t h a n 9 . 4 a r e n o t m a i n t a i n e d a n y m o r e ! " ;
2015-07-28 21:37:27 +02:00
} ;
2019-01-26 18:46:57 +01:00
} ;
postgresqlWithPackages = { postgresql , makeWrapper , buildEnv }: pkgs : f : buildEnv {
name = " p o s t g r e s q l - a n d - p l u g i n s - ${ postgresql . version } " ;
paths = f pkgs ++ [
postgresql
postgresql . lib
postgresql . man # in case user installs this into environment
] ;
buildInputs = [ makeWrapper ] ;
# We include /bin to ensure the $out/bin directory is created, which is
# needed because we'll be removing the files from that directory in postBuild
# below. See #22653
pathsToLink = [ " / " " / b i n " ] ;
2019-07-21 21:05:41 +02:00
# Note: the duplication of executables is about 4MB size.
# So a nicer solution was patching postgresql to allow setting the
# libdir explicitely.
2019-01-26 18:46:57 +01:00
postBuild = ''
mkdir - p $ out/bin
rm $ out/bin / { pg_config , postgres , pg_ctl }
cp - - target-directory = $ out/bin $ { postgresql } /bin / { postgres , pg_config , pg_ctl }
wrapProgram $ out/bin/postgres - - set NIX_PGLIBDIR $ out/lib
'' ;
2019-07-22 01:57:16 +02:00
passthru . version = postgresql . version ;
passthru . psqlSchema = postgresql . psqlSchema ;
2019-01-26 18:46:57 +01:00
} ;
2015-07-28 21:37:27 +02:00
2019-02-02 21:56:52 +01:00
in self : {
2015-07-28 21:37:27 +02:00
2019-02-02 21:56:52 +01:00
postgresql_9_5 = self . callPackage generic {
2020-05-15 11:20:00 +02:00
version = " 9 . 5 . 2 2 " ;
2016-01-08 16:47:03 +01:00
psqlSchema = " 9 . 5 " ;
2020-05-15 11:20:00 +02:00
sha256 = " 0 3 v 4 d 4 n r 9 f 8 6 y 0 i 1 j 5 j m v f a n 5 w 8 y 4 g a 1 m a r 5 9 l h c n j 3 j l 5 q 5 8 m a 8 " ;
2019-01-26 18:46:57 +01:00
this = self . postgresql_9_5 ;
inherit self ;
2016-01-08 16:47:03 +01:00
} ;
2019-02-02 21:56:52 +01:00
postgresql_9_6 = self . callPackage generic {
2020-05-15 11:21:00 +02:00
version = " 9 . 6 . 1 8 " ;
2016-11-22 22:48:18 +01:00
psqlSchema = " 9 . 6 " ;
2020-05-15 11:21:00 +02:00
sha256 = " 1 6 c r r 2 a 1 s l 9 7 a i a c q z d 0 b k 5 6 y l 1 a b q 6 b l c 0 c 6 q p x 5 r l 5 n y 1 c 4 z j i " ;
2019-01-26 18:46:57 +01:00
this = self . postgresql_9_6 ;
inherit self ;
2016-11-22 22:48:18 +01:00
} ;
2016-01-08 16:47:03 +01:00
2019-02-02 21:56:52 +01:00
postgresql_10 = self . callPackage generic {
2020-05-15 11:22:00 +02:00
version = " 1 0 . 1 3 " ;
2019-02-21 18:21:08 +01:00
psqlSchema = " 1 0 . 0 " ; # should be 10, but changing it is invasive
2020-05-15 11:22:00 +02:00
sha256 = " 1 q a l 0 y p 7 a 9 0 y z y a 7 h l 5 6 g s m w 5 f v a c p l r d h p n 7 h 9 g n b y r 1 i 2 i y w 2 d " ;
2019-01-26 18:46:57 +01:00
this = self . postgresql_10 ;
inherit self ;
2017-10-07 00:50:44 +02:00
} ;
2019-02-02 21:56:52 +01:00
postgresql_11 = self . callPackage generic {
2020-05-15 11:23:00 +02:00
version = " 1 1 . 8 " ;
2019-02-21 18:21:08 +01:00
psqlSchema = " 1 1 . 1 " ; # should be 11, but changing it is invasive
2020-05-15 11:23:00 +02:00
sha256 = " 1 q k s q y a y x m n c c m b a p g 3 a j s w 9 p j g q v a 0 i n x j h x 6 4 r q d 6 c k h r g 9 w p a " ;
2019-01-26 18:46:57 +01:00
this = self . postgresql_11 ;
inherit self ;
2018-10-18 15:52:29 +02:00
} ;
2019-10-04 01:00:00 +02:00
postgresql_12 = self . callPackage generic {
2020-02-14 06:04:00 +01:00
version = " 1 2 . 2 " ;
2019-10-04 01:00:00 +02:00
psqlSchema = " 1 2 " ;
2020-02-14 06:04:00 +01:00
sha256 = " 1 p m m d 5 9 p v f s 5 0 g s i 7 2 8 b w 9 f 1 j l 5 9 x g h s j d a n f i m p h 0 6 5 9 x 6 c q 7 d d " ;
2019-10-04 01:00:00 +02:00
this = self . postgresql_12 ;
inherit self ;
} ;
2019-02-02 21:56:52 +01:00
}