diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-04-10 15:35:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-10 23:54:46 +0200 |
commit | a97f0ee1368499dc40ea30002fcb6e06c7880acb (patch) | |
tree | 904c7746bbbf4b98a8588bdb2cc6794f561fb085 /gnu/packages/pcre.scm | |
parent | 18d0cec29e22cdbc27c486129d1a1425de27f03f (diff) | |
download | patches-a97f0ee1368499dc40ea30002fcb6e06c7880acb.tar patches-a97f0ee1368499dc40ea30002fcb6e06c7880acb.tar.gz |
gnu: pcre: Patch CVE-2017-7186.
* gnu/packages/patches/pcre-CVE-2017-7186.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/pcre.scm (pcre)[replacement]: New field.
(pcre/fixed): New variable.
Diffstat (limited to 'gnu/packages/pcre.scm')
-rw-r--r-- | gnu/packages/pcre.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index 9f610e59fd..1946f5229c 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 Leo Famulari <leo@famulari.name> ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> +;;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -33,6 +34,7 @@ (package (name "pcre") (version "8.40") + (replacement pcre/fixed) (source (origin (method url-fetch) (uri (list @@ -70,6 +72,14 @@ POSIX regular expression API.") (license license:bsd-3) (home-page "http://www.pcre.org/"))) +(define pcre/fixed + (package + (inherit pcre) + (replacement #f) + (source (origin + (inherit (package-source pcre)) + (patches (search-patches "pcre-CVE-2017-7186.patch")))))) + (define-public pcre2 (package (name "pcre2") |