diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-11-06 21:34:30 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-11-06 21:34:30 +0100 |
commit | c6b05bacc08dc423db74ae24d442fd43f1ba8893 (patch) | |
tree | 8b18631ef8d43148c22362924c729c7f982d52bd /gnu/packages/web.scm | |
parent | 9da4848632ea47bbd55ba1d8f8756d91961c44fe (diff) | |
download | guix-c6b05bacc08dc423db74ae24d442fd43f1ba8893.tar guix-c6b05bacc08dc423db74ae24d442fd43f1ba8893.tar.gz |
gnu: nginx: Update to 1.14.1 [security fixes].
This fixes CVE-2018-16843, CVE-2018-16844, and CVE-2018-16845.
* gnu/packages/web.scm (nginx): Update to 1.14.1.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 3203b258ad..b0ab4add8d 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -195,14 +195,14 @@ Interface} specification.") (name "nginx") ;; Consider updating the nginx-documentation package if the nginx package is ;; updated. - (version "1.14.0") + (version "1.14.1") (source (origin (method url-fetch) (uri (string-append "https://nginx.org/download/nginx-" version ".tar.gz")) (sha256 (base32 - "1d9c0avfpbwvzyg53b59ks8shpnrxnbnshcd7ziizflsyv5vw5ax")))) + "19542jxcjf4dvrqvgb5vr36mhbzcjrxc3v0xh451rm60610rf2dz")))) (build-system gnu-build-system) (inputs `(("openssl" ,openssl) ("pcre" ,pcre) |