diff options
author | NoƩ Lopez <noelopez@free.fr> | 2025-03-28 14:25:59 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-03-30 13:58:42 +0200 |
commit | 77d5eb4c16984e430b377e0b5f1551fbda171ec6 (patch) | |
tree | f646eee135ac778b6871cfbcc6e1b216368e3f85 | |
parent | 7770ce8380701409ee68b52d83594a8ca032a98c (diff) |
gnu: gnome-shell: Replace libgnomekbd with tecla.
This was changed in GNOME 45.
* gnu/packages/gnome.scm (gnome-shell): Replace libgnomekbd with tecla.
Change-Id: Iad3248319f95fe43c30e83c4ef6a7690f6e123d8
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/gnome.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 46b008f9c4..46e360067f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9587,14 +9587,13 @@ properties, screen resolution, and other GNOME parameters.") (add-before 'configure 'record-absolute-file-names (lambda* (#:key inputs #:allow-other-keys) (let ((ibus-daemon (search-input-file inputs "bin/ibus-daemon")) - (gkbd-keyboard-display - (search-input-file inputs "bin/gkbd-keyboard-display"))) + (tecla (search-input-file inputs "bin/tecla"))) (substitute* "js/misc/ibusManager.js" (("'ibus-daemon'") (string-append "'" ibus-daemon "'"))) (substitute* "js/ui/status/keyboard.js" - (("'gkbd-keyboard-display'") - (string-append "'" gkbd-keyboard-display "'")))))) + (("'tecla'") + (string-append "'" tecla "'")))))) (add-before 'check 'pre-check (lambda* (#:key inputs #:allow-other-keys) ;; Tests require a running X server. @@ -9706,7 +9705,6 @@ printf '~a is deprecated. Use the \"gnome-extensions\" CLI or \ ibus libcanberra libcroco - libgnomekbd ;for gkbd-keyboard-display libgweather4 libnma libsoup @@ -9718,6 +9716,7 @@ printf '~a is deprecated. Use the \"gnome-extensions\" CLI or \ pulseaudio python-pygobject startup-notification + tecla ;for keyboard previews telepathy-logger upower ;; XXX: These requirements were added in 3.24, but no mention in NEWS. |