diff options
author | Leo Famulari <leo@famulari.name> | 2017-03-10 22:35:50 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-03-10 22:36:58 -0500 |
commit | c84c8f66f54a508fbe5ba1831e3595794dc78eb2 (patch) | |
tree | dbd27c0fa806706c28b940ce8888d744e6a22497 /gnu/packages/wget.scm | |
parent | e08ad76658f0bd1b9880c2388ae004ff0daca1cb (diff) | |
download | guix-c84c8f66f54a508fbe5ba1831e3595794dc78eb2.tar guix-c84c8f66f54a508fbe5ba1831e3595794dc78eb2.tar.gz |
gnu: wget: Fix CVE-2017-6508.
* gnu/packages/patches/wget-CVE-2017-6508.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/wget.scm (wget)[source]: Use it.
Diffstat (limited to 'gnu/packages/wget.scm')
-rw-r--r-- | gnu/packages/wget.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm index 9ac21b4db1..1c56e14a66 100644 --- a/gnu/packages/wget.scm +++ b/gnu/packages/wget.scm @@ -20,6 +20,7 @@ (define-module (gnu packages wget) #:use-module (guix licenses) + #:use-module (gnu packages) #:use-module (gnu packages libidn) #:use-module (gnu packages python) #:use-module (gnu packages perl) @@ -39,6 +40,7 @@ (method url-fetch) (uri (string-append "mirror://gnu/wget/wget-" version ".tar.xz")) + (patches (search-patches "wget-CVE-2017-6508.patch")) (sha256 (base32 "1ljcfhbkdsd0zjfm520rbl1ai62fc34i7c45sfj244l8f6b0p58c")))) |