diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-30 04:20:00 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-30 09:25:37 +0100 |
commit | 03e8f9ed7951cad48e07bce8fc075a8ebc567510 (patch) | |
tree | 383ef4d513263767179bd0e50bfdf2f1ab4dcbe2 /gnu | |
parent | e43e1c1f23d6633ad9772a4b4f390de1af8c2bd0 (diff) | |
download | patches-03e8f9ed7951cad48e07bce8fc075a8ebc567510.tar patches-03e8f9ed7951cad48e07bce8fc075a8ebc567510.tar.gz |
gnu: nginx: Update to 1.13.8.
* gnu/packages/web.scm (nginx): Update to 1.13.8.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 562d6ced9f..305f196246 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -179,17 +179,17 @@ Interface} specification.") (name "nginx") ;; Consider updating the nginx-docs package if the nginx package is ;; updated. - (version "1.12.2") + (version "1.13.8") (source (origin (method url-fetch) (uri (string-append "https://nginx.org/download/nginx-" version ".tar.gz")) (sha256 (base32 - "05h4rwja7170z0l979yjghy9i9ichllwhicylzpmmyyml6fkfprh")))) + "1ib4hkngj9z7pl73lnn96d85m7v2wwb56nkypwx7d6pm3z1vc444")))) (build-system gnu-build-system) - (inputs `(("pcre" ,pcre) - ("openssl" ,openssl) + (inputs `(("openssl" ,openssl) + ("pcre" ,pcre) ("zlib" ,zlib))) (arguments `(#:tests? #f ; no test target |