summaryrefslogtreecommitdiff
path: root/gnu/packages/databases.scm
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2026-05-27 22:27:28 +0900
committerNguyễn Gia Phong <cnx@loang.net>2026-05-29 16:41:30 +0900
commit2cc6aacbd7ef2fa1eb83173ed7612ff613a99736 (patch)
tree652e2f659e1782a0d0ab7e8831b5d8406975de4f /gnu/packages/databases.scm
parent20dcd44484b54602543876b25f5e7fe0ee02a0fd (diff)
gnu: postgresql-14: Graft to 14.23 [security fixes].
PostgreSQL 14.23 contains fixes for CVE-2026-6472, CVE-2026-6473, CVE-2026-6474, CVE-2026-6475, CVE-2026-6477, CVE-2026-6478, CVE-2026-6479 and CVE-2026-6637. * gnu/packages/databases.scm (postgresql-14): Update to 14.23. Change-Id: I15229d938c5bfbd787d4b5f6a9328d79ba1b3626
Diffstat (limited to 'gnu/packages/databases.scm')
-rw-r--r--gnu/packages/databases.scm14
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 05d58f154fd..42b567743ad 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1793,6 +1793,7 @@ pictures, sounds, or video.")
1793 (inherit postgresql-15) 1793 (inherit postgresql-15)
1794 (name "postgresql") 1794 (name "postgresql")
1795 (version "14.20") 1795 (version "14.20")
1796 (replacement postgresql-14.23)
1796 (source (origin 1797 (source (origin
1797 (inherit (package-source postgresql-15)) 1798 (inherit (package-source postgresql-15))
1798 (uri (string-append "https://ftp.postgresql.org/pub/source/v" 1799 (uri (string-append "https://ftp.postgresql.org/pub/source/v"
@@ -1801,6 +1802,19 @@ pictures, sounds, or video.")
1801 (base32 1802 (base32
1802 "0sv45dsmyplfys6dfdjdwmrczl46s82x35xdh311nxj02q7z29vm")))))) 1803 "0sv45dsmyplfys6dfdjdwmrczl46s82x35xdh311nxj02q7z29vm"))))))
1803 1804
1805(define-public postgresql-14.23
1806 (package
1807 (inherit postgresql-14)
1808 (name "postgresql")
1809 (version "14.23")
1810 (source (origin
1811 (inherit (package-source postgresql-14))
1812 (uri (string-append "https://ftp.postgresql.org/pub/source/v"
1813 version "/postgresql-" version ".tar.bz2"))
1814 (sha256
1815 (base32
1816 "19clihp73ak2p5di90jhg50lqjkkr0iy349gkki30qsl5f11cwnc"))))))
1817
1804(define-deprecated/public postgresql-13 #f 1818(define-deprecated/public postgresql-13 #f
1805 (package 1819 (package
1806 (inherit postgresql-14) 1820 (inherit postgresql-14)