diff options
author | Julien Lepiller <julien@lepiller.eu> | 2017-08-03 20:14:56 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-08-04 18:58:33 +0200 |
commit | 1cec3462323717e063c98b6404e9c5c5ef037bdd (patch) | |
tree | fc9ef5f405f5397cb3546ee359de7a6b7e3b47fc /gnu/packages/php.scm | |
parent | 8d6c845d68211005a873811f0aa2dbc369bddbb5 (diff) | |
download | guix-1cec3462323717e063c98b6404e9c5c5ef037bdd.tar guix-1cec3462323717e063c98b6404e9c5c5ef037bdd.tar.gz |
gnu: php: Update to 7.1.8.
* gnu/packages/patches/gd-CVE-2017-7890.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it
* gnu/packages/php.scm (php): Update to 7.1.8.
Diffstat (limited to 'gnu/packages/php.scm')
-rw-r--r-- | gnu/packages/php.scm | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm index 7d569eef3e..d0afab0931 100644 --- a/gnu/packages/php.scm +++ b/gnu/packages/php.scm @@ -49,10 +49,21 @@ #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:prefix license:)) +(define gd-for-php + (package + (inherit gd) + (source (origin + (inherit (package-source gd)) + (patches + (append + (origin-patches (package-source gd)) + (search-patches "gd-CVE-2017-7890.patch"))))))) + + (define-public php (package (name "php") - (version "7.1.6") + (version "7.1.8") (home-page "https://secure.php.net/") (source (origin (method url-fetch) @@ -60,7 +71,7 @@ name "-" version ".tar.xz")) (sha256 (base32 - "0nr49gqhk4pv8kcdc60cl1mgwlinawpraq9ba15whzmb472lsn01")) + "1aramb6dm57pr2iz61id9vzfy7h5qkb6bf7dxhrwnjk0723qahw9")) (modules '((guix build utils))) (snippet '(with-directory-excursion "ext" @@ -282,7 +293,7 @@ ("curl" ,curl) ("cyrus-sasl" ,cyrus-sasl) ("freetype" ,freetype) - ("gd" ,gd) + ("gd" ,gd-for-php) ("gdbm" ,gdbm) ("glibc" ,glibc) ("gmp" ,gmp) |