mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: WebKitGTK: Update to 2.32.0 [fixes CVE-2021-{1788,1844,1871}].
* gnu/packages/webkit.scm (webkitgtk): Update to 2.32.0. [arguments]: Add -DENABLE_GAMEPAD=OFF to #:configure-flags.
This commit is contained in:
parent
1b6e7157cd
commit
3c5e1412e3
1 changed files with 5 additions and 2 deletions
|
@ -226,14 +226,14 @@ (define-public wpewebkit
|
||||||
(define-public webkitgtk
|
(define-public webkitgtk
|
||||||
(package
|
(package
|
||||||
(name "webkitgtk")
|
(name "webkitgtk")
|
||||||
(version "2.30.6")
|
(version "2.32.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://www.webkitgtk.org/releases/"
|
(uri (string-append "https://www.webkitgtk.org/releases/"
|
||||||
"webkitgtk-" version ".tar.xz"))
|
"webkitgtk-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07kwkn7gnlfw4idl5vyyzhzbj2bjzvjrclbikn9vaw0pm73nwwsh"))
|
"1w3b0w8izp0i070grhv19j631sdcd0mcqnjnax13k8mdx7dg8zcx"))
|
||||||
(patches (search-patches "webkitgtk-share-store.patch"
|
(patches (search-patches "webkitgtk-share-store.patch"
|
||||||
"webkitgtk-bind-all-fonts.patch"))))
|
"webkitgtk-bind-all-fonts.patch"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
|
@ -244,6 +244,9 @@ (define-public webkitgtk
|
||||||
#:configure-flags (list
|
#:configure-flags (list
|
||||||
"-DPORT=GTK"
|
"-DPORT=GTK"
|
||||||
"-DENABLE_GTKDOC=ON" ; No doc by default
|
"-DENABLE_GTKDOC=ON" ; No doc by default
|
||||||
|
;; Requires libmanette, new dependency added in 2.32.0.
|
||||||
|
;; TODO Decide if we should enable this
|
||||||
|
"-DENABLE_GAMEPAD=OFF"
|
||||||
"-DUSE_SYSTEMD=OFF"
|
"-DUSE_SYSTEMD=OFF"
|
||||||
(string-append ; uses lib64 by default
|
(string-append ; uses lib64 by default
|
||||||
"-DLIB_INSTALL_DIR="
|
"-DLIB_INSTALL_DIR="
|
||||||
|
|
Loading…
Reference in a new issue