guix_mirror_bot pushed a commit to branch master
in repository guix.
commit f04dc9234c58b064507bb46ab1797f95f09b543e
Author: Andreas Enge <[email protected]>
AuthorDate: Mon Mar 9 11:32:41 2026 +0100
gnu: Remove postgresql-11.
* gnu/packages/databases.scm (postgresql-11): Delete variable.
Fixes: guix/guix#6950
Change-Id: I02f29542191bea0d70827f40749d16f1f032a823
---
gnu/packages/databases.scm | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index cab164e0ab..f909bd4596 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1654,22 +1654,6 @@ pictures, sounds, or video.")
(base32
"0rc8rpsw2lwa5af35zd8iifah02wg2rnn1i890h2h8zh55hvpjy9"))))))
-(define-deprecated/public postgresql-11 #f
- (package
- (inherit postgresql-13)
- (name "postgresql")
- (version "11.22")
- (source (origin
- (inherit (package-source postgresql-13))
- (uri (string-append "https://ftp.postgresql.org/pub/source/v"
- version "/postgresql-" version ".tar.bz2"))
- (sha256
- (base32
- "1w71xf97i3hha6vl05xqf960k75nczs6375w3f2phwhdg9ywkdrc"))))
- (native-inputs
- (modify-inputs (package-native-inputs postgresql-13)
- (replace "docbook-xml" docbook-xml-4.2)))))
-
(define-public postgresql postgresql-14)
(define-public libpg-query-17