[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: libx11: Graft with 1.8.6 [security fixes].
From: |
guix-commits |
Subject: |
branch master updated: gnu: libx11: Graft with 1.8.6 [security fixes]. |
Date: |
Sat, 02 Sep 2023 14:48:44 -0400 |
This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 5ff0c8997a gnu: libx11: Graft with 1.8.6 [security fixes].
5ff0c8997a is described below
commit 5ff0c8997a2ddf71af477883584a5f9ccd9b757f
Author: Kaelyn Takata <kaelyn.alexi@protonmail.com>
AuthorDate: Fri Jun 16 18:47:52 2023 +0000
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>
---
gnu/packages/xorg.scm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 38bd38a85f..08cbd8d757 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -5307,6 +5307,7 @@ Wayland.")
(package
(name "libx11")
(version "1.8.1")
+ (replacement libx11-fixed) ;security fixes
(source
(origin
(method url-fetch)
@@ -5336,6 +5337,19 @@ Wayland.")
(description "Xorg Core X11 protocol client library.")
(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
(define-public libxcursor
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: libx11: Graft with 1.8.6 [security fixes].,
guix-commits <=