2015-07-28 20:37:27 +01:00
let
2019-01-26 17:46:57 +00:00
generic =
# dependencies
{ stdenv , lib , fetchurl , makeWrapper
2020-02-19 06:59:50 +00:00
, glibc , zlib , readline , openssl , icu , systemd , libossp_uuid
2021-01-19 06:50:56 +00:00
, pkg-config , libxml2 , tzdata
2019-01-26 17:46:57 +00:00
2019-07-21 20:13:06 +01:00
# This is important to obtain a version of `libpq` that does not depend on systemd.
2019-07-23 04:08:28 +01:00
, enableSystemd ? ( lib . versionAtLeast version " 9 . 6 " && ! stdenv . isDarwin )
2021-04-28 20:42:44 +01:00
, gssSupport ? with stdenv . hostPlatform ; ! isWindows && ! isStatic , libkrb5
2019-07-21 20:13:06 +01:00
2019-01-26 17:46:57 +00:00
# for postgreql.pkgs
, this , self , newScope , buildEnv
# source specification
2021-01-09 23:52:23 +00:00
, version , sha256 , psqlSchema ,
# for tests
nixosTests , thisAttr
2019-01-26 17:46:57 +00:00
} :
2018-12-08 05:32:26 +00:00
let
atLeast = lib . versionAtLeast version ;
icuEnabled = atLeast " 1 0 " ;
2019-01-26 17:46:57 +00:00
in stdenv . mkDerivation rec {
2019-08-15 13:41:18 +01:00
pname = " p o s t g r e s q l " ;
2018-11-27 19:16:21 +00:00
inherit version ;
2015-07-28 20:37:27 +01:00
src = fetchurl {
2019-08-15 13:41:18 +01: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 20:37:27 +01:00
inherit sha256 ;
} ;
2017-09-27 20:48:39 +01:00
outputs = [ " o u t " " l i b " " d o c " " m a n " ] ;
2015-10-14 04:47:54 +01:00
setOutputFlags = false ; # $out retains configureFlags :-/
2015-07-28 20:37:27 +01:00
buildInputs =
2021-02-07 09:17:39 +00:00
[ zlib readline openssl libxml2 ]
2018-12-08 05:32:26 +00:00
++ lib . optionals icuEnabled [ icu ]
2019-07-21 20:13:06 +01:00
++ lib . optionals enableSystemd [ systemd ]
2021-04-28 20:42:44 +01:00
++ lib . optionals gssSupport [ libkrb5 ]
2015-07-28 20:37:27 +01:00
++ lib . optionals ( ! stdenv . isDarwin ) [ libossp_uuid ] ;
2021-02-07 09:17:39 +00:00
nativeBuildInputs = [ makeWrapper ] ++ lib . optionals icuEnabled [ pkg-config ] ;
2018-12-08 05:32:26 +00:00
2018-11-27 20:13:23 +00:00
enableParallelBuilding = ! stdenv . isDarwin ;
2015-07-28 20:37:27 +01:00
2020-11-11 00:11:01 +00:00
separateDebugInfo = true ;
2019-05-31 03:30:15 +01:00
buildFlags = [ " w o r l d " ] ;
2015-07-28 20:37:27 +01:00
2019-10-30 00:40:49 +00:00
NIX_CFLAGS_COMPILE = " - I ${ libxml2 . dev } / i n c l u d e / l i b x m l 2 " ;
2018-07-31 04:23:17 +01:00
2018-08-19 08:07:00 +01:00
# Otherwise it retains a reference to compiler and fails; see #44767. TODO: better.
2018-08-20 09:07:27 +01:00
preConfigure = " C C = ${ stdenv . cc . targetPrefix } c c " ;
2018-08-19 08:07:00 +01:00
2015-10-14 04:47:54 +01:00
configureFlags = [
" - - w i t h - o p e n s s l "
2017-07-15 14:58:17 +01:00
" - - w i t h - l i b x m l "
2015-10-14 04:47:54 +01: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 19:06:13 +01: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 "
2020-11-10 11:43:09 +00:00
" - - e n a b l e - d e b u g "
2019-07-21 20:13:06 +01:00
( lib . optionalString enableSystemd " - - w i t h - s y s t e m d " )
2018-08-02 21:22:42 +01: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 " )
2021-04-28 20:42:44 +01:00
] ++ lib . optionals icuEnabled [ " - - w i t h - i c u " ]
++ lib . optionals gssSupport [ " - - w i t h - g s s a p i " ] ;
2015-07-28 20:37:27 +01:00
patches =
2018-08-06 16:17:49 +01: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 03:30:15 +01:00
./patches/findstring.patch
2020-11-03 19:44:36 +00:00
]
++ lib . optional stdenv . isLinux ( if atLeast " 1 3 " then ./patches/socketdir-in-run-13.patch else ./patches/socketdir-in-run.patch ) ;
2015-07-28 20:37:27 +01:00
installTargets = [ " i n s t a l l - w o r l d " ] ;
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 " 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 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 " l i b / p g x s " " $ o u t " # looks strange, but not deleting it
2019-10-04 00:00:00 +01: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 09:03:23 +00:00
moveToOutput " l i b / l i b e c p g * " " $ o u t "
2015-10-14 04:47:54 +01:00
2017-09-27 20:48:39 +01: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 14:19:46 +00:00
if [ - z " ' ' ${ dontDisableStatic:- } " ] ; then
# Remove static libraries in case dynamic are available.
2019-02-19 01:31:09 +00:00
for i in $ out/lib /* . a $ l i b / l i b / * . a ; d o
2018-01-11 14:19:46 +00:00
name = " $ ( b a s e n a m e " $ i " ) "
2018-11-28 01:33:57 +00: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 14:19:46 +00:00
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 == " g l i b c " )
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
'' ;
2019-06-06 05:18:38 +01:00
doCheck = ! stdenv . isDarwin ;
2019-05-12 20:40:22 +01:00
# autodetection doesn't seem to able to find this, but it's there.
checkTarget = " c h e c k " ;
2019-10-25 23:31:49 +01: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 04:20:18 +01:00
doInstallCheck = false ; # needs a running daemon?
2015-07-28 20:37:27 +01:00
disallowedReferences = [ stdenv . cc ] ;
passthru = {
2020-04-23 16:08:45 +01:00
inherit readline psqlSchema ;
2019-01-26 17:46:57 +00: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 ;
2021-01-09 23:52:23 +00:00
tests . postgresql = nixosTests . postgresql-wal-receiver . ${ thisAttr } ;
2015-07-28 20:37:27 +01:00
} ;
meta = with lib ; {
2020-04-01 02:11:51 +01: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 20:37:27 +01: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 18:31:20 +00:00
license = licenses . postgresql ;
2020-12-07 14:26:45 +00:00
maintainers = with maintainers ; [ thoughtpolice danbst globin marsam ] ;
2018-11-02 18:31:20 +00:00
platforms = platforms . unix ;
2018-12-17 15:33:18 +00: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 20:37:27 +01:00
} ;
2019-01-26 17:46:57 +00: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 ] ;
2020-11-10 11:43:09 +00:00
2019-01-26 17:46:57 +00:00
# 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 20:05:41 +01: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 17:46:57 +00: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 00:57:16 +01:00
passthru . version = postgresql . version ;
passthru . psqlSchema = postgresql . psqlSchema ;
2019-01-26 17:46:57 +00:00
} ;
2015-07-28 20:37:27 +01:00
2019-02-02 20:56:52 +00:00
in self : {
2015-07-28 20:37:27 +01:00
2019-02-02 20:56:52 +00:00
postgresql_9_6 = self . callPackage generic {
2021-02-11 04:20:00 +00:00
version = " 9 . 6 . 2 1 " ;
2016-11-22 21:48:18 +00:00
psqlSchema = " 9 . 6 " ;
2021-02-11 04:20:00 +00:00
sha256 = " 0 d 0 n g p a d f 1 i 7 c 0 i 2 p s a x c b m i w x 8 3 3 4 i b c s n 2 8 3 n 9 f p 4 8 5 3 p y l 3 w k " ;
2019-01-26 17:46:57 +00:00
this = self . postgresql_9_6 ;
2021-01-09 23:52:23 +00:00
thisAttr = " p o s t g r e s q l _ 9 _ 6 " ;
2019-01-26 17:46:57 +00:00
inherit self ;
2016-11-22 21:48:18 +00:00
} ;
2016-01-08 15:47:03 +00:00
2019-02-02 20:56:52 +00:00
postgresql_10 = self . callPackage generic {
2021-02-11 04:20:00 +00:00
version = " 1 0 . 1 6 " ;
2019-02-21 17:21:08 +00:00
psqlSchema = " 1 0 . 0 " ; # should be 10, but changing it is invasive
2021-02-11 04:20:00 +00:00
sha256 = " 1 c v v 8 q w 0 g k k c z q h i w x 6 n s 7 w 8 8 d w k v d z 4 c v b 2 d 4 f f 1 4 3 6 3 f 5 p 2 p 5 3 " ;
2019-01-26 17:46:57 +00:00
this = self . postgresql_10 ;
2021-01-09 23:52:23 +00:00
thisAttr = " p o s t g r e s q l _ 1 0 " ;
2019-01-26 17:46:57 +00:00
inherit self ;
2021-03-15 01:12:33 +00:00
icu = self . icu67 ;
2017-10-06 23:50:44 +01:00
} ;
2019-02-02 20:56:52 +00:00
postgresql_11 = self . callPackage generic {
2021-02-11 04:20:00 +00:00
version = " 1 1 . 1 1 " ;
2019-02-21 17:21:08 +00:00
psqlSchema = " 1 1 . 1 " ; # should be 11, but changing it is invasive
2021-02-11 04:20:00 +00:00
sha256 = " 0 v 0 q k 2 9 8 n x m p z p g s x c s x m a 3 2 8 h d k y z d 7 f w j s 0 z s n 6 z a v l 5 z p n q 2 0 " ;
2019-01-26 17:46:57 +00:00
this = self . postgresql_11 ;
2021-01-09 23:52:23 +00:00
thisAttr = " p o s t g r e s q l _ 1 1 " ;
2019-01-26 17:46:57 +00:00
inherit self ;
2018-10-18 14:52:29 +01:00
} ;
2019-10-04 00:00:00 +01:00
postgresql_12 = self . callPackage generic {
2021-02-11 04:20:00 +00:00
version = " 1 2 . 6 " ;
2019-10-04 00:00:00 +01:00
psqlSchema = " 1 2 " ;
2021-02-11 04:20:00 +00:00
sha256 = " 0 2 8 a s z 9 2 m i 3 7 0 6 z a b f s 8 w 9 z 0 3 m z y x 6 2 d 1 l 7 1 q y 9 z d w f a b j 6 x j z f z " ;
2019-10-04 00:00:00 +01:00
this = self . postgresql_12 ;
2021-01-09 23:52:23 +00:00
thisAttr = " p o s t g r e s q l _ 1 2 " ;
2019-10-04 00:00:00 +01:00
inherit self ;
} ;
2020-09-24 05:20:00 +01:00
postgresql_13 = self . callPackage generic {
2021-02-11 04:20:00 +00:00
version = " 1 3 . 2 " ;
2020-09-24 05:20:00 +01:00
psqlSchema = " 1 3 " ;
2021-02-11 04:20:00 +00:00
sha256 = " 1 z 5 d 8 4 7 j n a j c f r 3 w a 6 j n 5 2 a 8 x j h a m v w z m z 1 8 x l m 5 n v x q i p 8 g r m s z " ;
2020-09-24 05:20:00 +01:00
this = self . postgresql_13 ;
2021-01-09 23:52:23 +00:00
thisAttr = " p o s t g r e s q l _ 1 3 " ;
2020-09-24 05:20:00 +01:00
inherit self ;
} ;
2019-02-02 20:56:52 +00:00
}