[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: databases: Define postgresql-10.
From: |
guix-commits |
Subject: |
04/05: gnu: databases: Define postgresql-10. |
Date: |
Tue, 20 Oct 2020 18:40:02 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 21b712acc73f6a0a8f9d44ae32438539b78b3db6
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Fri Oct 2 19:08:35 2020 +0100
gnu: databases: Define postgresql-10.
So that it can be used, rather than postgresql. Because the major version of
the package is important, as it relates to the compatability with the data
files used by the service, it's useful to have a stable name to refer to a
package for version 10 of PostgreSQL.
* gnu/packages/databases.scm (postgresql-10): New variable.
---
gnu/packages/databases.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 1236f57..0d8342b 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1040,6 +1040,8 @@ TIMESTAMP. It also supports storage of binary large
objects, including
pictures, sounds, or video.")
(license (license:x11-style "file://COPYRIGHT"))))
+(define-public postgresql-10 postgresql)
+
(define-public postgresql-11
(package
(inherit postgresql)