diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2023-11-09 16:11:48 -0500 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2023-11-09 16:21:59 -0500 |
commit | aee3c5a894fddf88810f18fa8880b423b078b3fa (patch) | |
tree | 35b64e59f7e3608e07058bc2331e7113d086acb2 /gnu/packages/qt.scm | |
parent | 02edc2520a0384479a9e8db4af9c7ebbbffe2349 (diff) |
gnu: qtbase-5: Use libxkbcommon-1.5.
This fixes a build failure for qtbase-5 and qtbase due to keysyms removed in
libxkbcommon 1.6.0. See the release announcement
<https://lists.freedesktop.org/archives/wayland-devel/2023-October/043121.html>.
* gnu/packages/qt.scm (qtbase)[inputs]: Replace libxkbcommon with
libxkbcommon-1.5.
Change-Id: I4bbf63ec15b33151fa741149a00f31558a109d48
Diffstat (limited to 'gnu/packages/qt.scm')
-rw-r--r-- | gnu/packages/qt.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 12785c811f..7ec4526492 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -406,7 +406,10 @@ system, and the core design of Django is reused in Grantlee.") libxfixes libxi libxinerama - libxkbcommon + ;; Use libxkbcommon-1.5 as 1.6.0 removed keysyms referenced in the + ;; qtbase source. + ;; TODO: Check if libxkbcommon can be used on next update. + libxkbcommon-1.5 libxml2 libxrandr libxrender |