diff options
author | Leo Famulari <leo@famulari.name> | 2017-01-01 15:12:48 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-01-04 14:42:58 -0500 |
commit | 5f0fabec54812e9ebd9a54b7c24b29899c765548 (patch) | |
tree | b558aaecc1801752a79286ed36a4b278e4074986 /gnu/packages/unrtf.scm | |
parent | 7a203059d3d0dcbf1f1a8792636b0b41f85b61cf (diff) | |
download | patches-5f0fabec54812e9ebd9a54b7c24b29899c765548.tar patches-5f0fabec54812e9ebd9a54b7c24b29899c765548.tar.gz |
gnu: unrtf: Fix CVE-2016-10091.
* gnu/packages/patches/unrtf-CVE-2016-10091.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/unrtf.scm (unrtf)[source]: Use it.
Diffstat (limited to 'gnu/packages/unrtf.scm')
-rw-r--r-- | gnu/packages/unrtf.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/unrtf.scm b/gnu/packages/unrtf.scm index 162dec7525..e11c9445ca 100644 --- a/gnu/packages/unrtf.scm +++ b/gnu/packages/unrtf.scm @@ -23,6 +23,7 @@ #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix gexp) + #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages m4) #:use-module (gnu packages base)) @@ -35,6 +36,7 @@ (method url-fetch) (uri (string-append "mirror://gnu/unrtf/unrtf-" version ".tar.gz")) + (patches (search-patches "unrtf-CVE-2016-10091.patch")) (sha256 (base32 "1pcdzf2h1prn393dkvg93v80vh38q0v817xnbwrlwxbdz4k7i8r2")) |