diff options
author | Alex Vong <alexvong1995@gmail.com> | 2017-08-10 21:02:14 +0800 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-08-12 15:30:23 +0200 |
commit | bfcdf88760e6732d43c0cd1eeb0a95c5d8681950 (patch) | |
tree | f3ce174d3ec7cf667fb0f7873073802e14bfe518 /gnu/packages/textutils.scm | |
parent | 3ddaa7922bdd71ff4467b95a7ed264bbc4d49975 (diff) | |
download | patches-bfcdf88760e6732d43c0cd1eeb0a95c5d8681950.tar patches-bfcdf88760e6732d43c0cd1eeb0a95c5d8681950.tar.gz |
gnu: catdoc: Fix CVE-2017-11110.
* gnu/packages/patches/catdoc-CVE-2017-11110.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/textutils.scm (catdoc)[source]: Use it.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
Diffstat (limited to 'gnu/packages/textutils.scm')
-rw-r--r-- | gnu/packages/textutils.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index e8ae30cd6d..537d013345 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org> ;;; Copyright © 2017 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2017 Kei Kebreau <kei@openmailbox.org> +;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -409,6 +410,7 @@ runs Word\".") (method url-fetch) (uri (string-append "http://ftp.wagner.pp.ru/pub/catdoc/" "catdoc-" version ".tar.gz")) + (patches (search-patches "catdoc-CVE-2017-11110.patch")) (sha256 (base32 "15h7v3bmwfk4z8r78xs5ih6vd0pskn0rj90xghvbzdjj0cc88jji")))) |