gnu: libx11: Graft with 1.8.6 [security fixes].
Includes fix for: CVE-2023-3138. * gnu/packages/xorg.scm (libx11-fixed): New variable. (libx11)[replacement]: Graft. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>master
parent
8226549181
commit
5ff0c8997a
|
@ -5307,6 +5307,7 @@ Wayland.")
|
||||||
(package
|
(package
|
||||||
(name "libx11")
|
(name "libx11")
|
||||||
(version "1.8.1")
|
(version "1.8.1")
|
||||||
|
(replacement libx11-fixed) ;security fixes
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -5336,6 +5337,19 @@ Wayland.")
|
||||||
(description "Xorg Core X11 protocol client library.")
|
(description "Xorg Core X11 protocol client library.")
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
|
(define-public libx11-fixed
|
||||||
|
(package
|
||||||
|
(inherit libx11)
|
||||||
|
(version "1.8.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://xorg/individual/lib/libX11-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1jawl8zp1h7hdmxx1sc6kmxkki187d9yixr2l03ai6wqqry5nlsr"))))))
|
||||||
|
|
||||||
;; packages of height 5 in the propagated-inputs tree
|
;; packages of height 5 in the propagated-inputs tree
|
||||||
|
|
||||||
(define-public libxcursor
|
(define-public libxcursor
|
||||||
|
|
Reference in New Issue