me
/
guix
Archived
1
0
Fork 0

gnu: postgresql: Add 13.1.

* gnu/packages/databases.scm (postgresql-13): New public variable.
master
Marius Bakke 2020-12-12 19:46:23 +01:00
parent 38438ea909
commit ddeec8cad3
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 12 additions and 0 deletions

View File

@ -1206,6 +1206,18 @@ pictures, sounds, or video.")
(define-public postgresql-10 postgresql)
(define-public postgresql-13
(package
(inherit postgresql)
(version "13.1")
(source (origin
(inherit (package-source postgresql))
(uri (string-append "https://ftp.postgresql.org/pub/source/v"
version "/postgresql-" version ".tar.bz2"))
(sha256
(base32
"07z6zwr58dckaa97yl9ml240z83d1lhgaxw9aq49i8lsp21mqd0j"))))))
(define-public postgresql-11
(package
(inherit postgresql)