diff options
author | Leo Famulari <leo@famulari.name> | 2016-01-26 15:27:58 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-01-26 15:27:58 -0500 |
commit | 7432386adb0d239270afd5004e4a08d92cdcaa6d (patch) | |
tree | 7fd59dae91df6f7002be0d4d2320aef880e893c3 | |
parent | 97d76250e18009e7ef3d0df2ccc15d34432f6bc2 (diff) | |
download | guix-7432386adb0d239270afd5004e4a08d92cdcaa6d.tar guix-7432386adb0d239270afd5004e4a08d92cdcaa6d.tar.gz |
gnu: nginx: Update to 1.8.1 [fixes CVE-2016-{0742,0746,0747}].
* gnu/packages/web.scm (nginx): Update to 1.8.1.
-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 52c5740388..cfee142585 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -100,14 +100,14 @@ and its related documentation.") (define-public nginx (package (name "nginx") - (version "1.8.0") + (version "1.8.1") (source (origin (method url-fetch) (uri (string-append "http://nginx.org/download/nginx-" version ".tar.gz")) (sha256 (base32 - "1mgkkmmwkhmpn68sdvbd73ssv6lpqhh864fsyvc1ij4hk4is3k13")))) + "1dwpyw4pvhj68vxramqxm8f79pqz9lrm8mvifbn49h3615ikqjwg")))) (build-system gnu-build-system) (inputs `(("pcre" ,pcre) ("openssl" ,openssl) |