3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add postgresql@9.6.

* gnu/packages/databases.scm (postgresql@9.6): New variable.
This commit is contained in:
Efraim Flashner 2017-10-12 23:38:00 +03:00
parent ee8aab1f8d
commit 7658d89bb7
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -646,6 +646,19 @@ TIMESTAMP. It also supports storage of binary large objects, including
pictures, sounds, or video.")
(license (license:x11-style "file://COPYRIGHT"))))
(define-public postgresql-9.6
(package
(inherit postgresql)
(name "postgresql")
(version "9.6.5")
(source (origin
(method url-fetch)
(uri (string-append "https://ftp.postgresql.org/pub/source/v"
version "/postgresql-" version ".tar.bz2"))
(sha256
(base32
"0k3ls2x182jz6djjiqj9kycddabdl2gk1y1ajq1vipnxwfki5nh6"))))))
(define-public qdbm
(package
(name "qdbm")