diff options
author | Leo Famulari <leo@famulari.name> | 2017-06-03 18:32:57 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-06-03 20:50:10 -0400 |
commit | 8b5cb8d0542115b840b0086be1dbc00c116c7877 (patch) | |
tree | deb9d816351268c2d53f85c2f521a86f3be828cb /gnu/packages/qemu.scm | |
parent | 34cfeca84e62b92e4f2b32c5bf33fe4982253f48 (diff) | |
download | guix-8b5cb8d0542115b840b0086be1dbc00c116c7877.tar guix-8b5cb8d0542115b840b0086be1dbc00c116c7877.tar.gz |
gnu: qemu: Fix CVE-2017-{8112,8309,8379,8380}.
* gnu/packages/patches/qemu-CVE-2017-8112.patch,
gnu/packages/patches/qemu-CVE-2017-8309.patch,
gnu/packages/patches/qemu-CVE-2017-8379.patch,
gnu/packages/patches/qemu-CVE-2017-8380.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/qemu.scm (qemu)[source]: Use them.
Diffstat (limited to 'gnu/packages/qemu.scm')
-rw-r--r-- | gnu/packages/qemu.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm index 0734b6d0f7..31354b25d7 100644 --- a/gnu/packages/qemu.scm +++ b/gnu/packages/qemu.scm @@ -74,7 +74,11 @@ (method url-fetch) (uri (string-append "http://wiki.qemu-project.org/download/qemu-" version ".tar.xz")) - (patches (search-patches "qemu-CVE-2017-7493.patch")) + (patches (search-patches "qemu-CVE-2017-7493.patch" + "qemu-CVE-2017-8112.patch" + "qemu-CVE-2017-8309.patch" + "qemu-CVE-2017-8379.patch" + "qemu-CVE-2017-8380.patch")) (sha256 (base32 "08mhfs0ndbkyqgw7fjaa9vjxf4dinrly656f6hjzvmaz7hzc677h")))) |