diff options
author | Leo Famulari <leo@famulari.name> | 2018-03-01 18:04:43 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-03-01 20:01:48 -0500 |
commit | bb17b2be49fbe50cfc44b5987f7c32fc0db1ccc5 (patch) | |
tree | 902008f670c276712cdbffa94859ffbd9e623761 | |
parent | e9802319f7df328e8deb13d576ba31732183f693 (diff) | |
download | guix-bb17b2be49fbe50cfc44b5987f7c32fc0db1ccc5.tar guix-bb17b2be49fbe50cfc44b5987f7c32fc0db1ccc5.tar.gz |
gnu: postgresql: Update to 10.3 [fixes CVE-2018-1058].
* gnu/packages/databases.scm (postgresql): Update to 10.3.
-rw-r--r-- | gnu/packages/databases.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 19c8efc9d4..1793089003 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -700,14 +700,14 @@ as a drop-in replacement of MySQL.") (define-public postgresql (package (name "postgresql") - (version "10.2") + (version "10.3") (source (origin (method url-fetch) (uri (string-append "https://ftp.postgresql.org/pub/source/v" version "/postgresql-" version ".tar.bz2")) (sha256 (base32 - "1bav2iyi93h866skrrlqlvsp4sfv1sfww1s305zpzffxcadh0cpy")))) + "06lkcwsf851z49zqcws5yc77s2yrbaazf2nvbk38hpp31rw6i8kf")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--with-uuid=e2fs") |