about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2023-10-29 17:57:22 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2023-10-30 10:41:16 +0100
commit1220a4d4dd1a4590780a5e1c18d1333a121be366 (patch)
treed85e7bfd778eefadeeabc3066416cbcd2d2a4579 /pkgs/applications/misc
parentf5458516e42cc5cb4123cc2d93f45c240548aa18 (diff)
downloadnixlib-1220a4d4dd1a4590780a5e1c18d1333a121be366.tar
nixlib-1220a4d4dd1a4590780a5e1c18d1333a121be366.tar.gz
nixlib-1220a4d4dd1a4590780a5e1c18d1333a121be366.tar.bz2
nixlib-1220a4d4dd1a4590780a5e1c18d1333a121be366.tar.lz
nixlib-1220a4d4dd1a4590780a5e1c18d1333a121be366.tar.xz
nixlib-1220a4d4dd1a4590780a5e1c18d1333a121be366.tar.zst
nixlib-1220a4d4dd1a4590780a5e1c18d1333a121be366.zip
postgresql_11: remove
As described in the release lifecycle docs from postgresql[1], v11 will
stop receiving fixes as of Nov 9 2023. This means it's EOL throughout
the entire lifetime of 23.11, so let's drop it now.

A lot of examples are also referencing postgresql_11. Where it's
sensible, use postgresql_15 as example now to avoid confusion.

This is also handy because the LLVM 16 fix for postgresql is not
available for postgresql 11 ;-)

[1] https://www.postgresql.org/support/versioning/
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/glom/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/glom/default.nix b/pkgs/applications/misc/glom/default.nix
index 363e6fadee41..248d7e841b01 100644
--- a/pkgs/applications/misc/glom/default.nix
+++ b/pkgs/applications/misc/glom/default.nix
@@ -28,7 +28,7 @@
 , isocodes
 , gtksourceview
 , gtksourceviewmm
-, postgresql_11
+, postgresql_15
 , gobject-introspection
 , yelp-tools
 , wrapGAppsHook
@@ -93,7 +93,7 @@ in stdenv.mkDerivation rec {
     python3.pkgs.pygobject3
     gtksourceview
     gtksourceviewmm
-    postgresql_11 # for pg_config
+    postgresql_15 # for pg_config
   ];
 
   enableParallelBuilding = true;