GNU bug report logs -
#39435
[PATCH] gnu: lxqt-config: fixing keyboard layout.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#39435: [PATCH] gnu: lxqt-config: fixing keyboard layout.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 39435 <at> debbugs.gnu.org.
--
39435: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39435
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
"Fakhri Sajadi" <f.sajadi <at> pantherx.org> writes:
> * gnu/packages/lxqt.scm (lxqt-config): Add xkeyboard-config in inputs.
Thanks! I edited the commit message to more closely follow our
conventions, and also added a copyright line for you. Let me know if
the information is incorrect.
[...]
> + (add-after 'unpack 'set-xkeyboard-config-file-name
> + (lambda* (#:key inputs #:allow-other-keys)
> + ;; Set the file name to xkeyboard-config and kbd.
> + (let ((xkb (assoc-ref inputs "xkeyboard-config"))
> + (kbd (assoc-ref inputs "kbd")))
> + (substitute* "lxqt-config-input/keyboardlayoutconfig.h"
> + (("/usr/share/X11/xkb/rules/base.lst")
> + (string-append xkb "/share/X11/xkb/rules/base.lst")))
> + #t)))
I also removed the let binding for 'kbd' as it was unused.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
* gnu/packages/lxqt.scm (lxqt-config): Add xkeyboard-config in inputs.
---
gnu/packages/lxqt.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 12c92e52d1..e58ec70579 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -379,6 +379,7 @@ the operating system LXQt is running on.")
("qtx11extras" ,qtx11extras)
("solid" ,solid)
("xf86-input-libinput" ,xf86-input-libinput)
+ ("xkeyboard-config" ,xkeyboard-config)
("zlib" ,zlib)))
(native-inputs
`(("pkg-config" ,pkg-config)
@@ -394,6 +395,15 @@ the operating system LXQt is running on.")
(("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
"DESTINATION \"etc/xdg"))
#t))
+ (add-after 'unpack 'set-xkeyboard-config-file-name
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; Set the file name to xkeyboard-config and kbd.
+ (let ((xkb (assoc-ref inputs "xkeyboard-config"))
+ (kbd (assoc-ref inputs "kbd")))
+ (substitute* "lxqt-config-input/keyboardlayoutconfig.h"
+ (("/usr/share/X11/xkb/rules/base.lst")
+ (string-append xkb "/share/X11/xkb/rules/base.lst")))
+ #t)))
(add-after 'unpack 'patch-translations-dir
(lambda* (#:key outputs #:allow-other-keys)
(substitute* '("lxqt-config-file-associations/CMakeLists.txt"
This bug report was last modified 5 years and 168 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.