gnu: gnome-shell: Add dependency on libgnomekbd.
This fixes the "Show keyboard layout" button in the keyboard layout switcher. * gnu/packages/gnome.scm (gnome-shell)[arguments]: In 'record-absolute-file-names' phase, record file name of 'gkbd-keyboard-display'. [inputs]: Add LIBGNOMEKBD.
This commit is contained in:
parent
2472cdec25
commit
d6fda4d3d1
|
@ -5770,6 +5770,10 @@ properties, screen resolution, and other GNOME parameters.")
|
||||||
(("'ibus-daemon'")
|
(("'ibus-daemon'")
|
||||||
(string-append "'" (assoc-ref inputs "ibus")
|
(string-append "'" (assoc-ref inputs "ibus")
|
||||||
"/bin/ibus-daemon'")))
|
"/bin/ibus-daemon'")))
|
||||||
|
(substitute* "js/ui/status/keyboard.js"
|
||||||
|
(("'gkbd-keyboard-display'")
|
||||||
|
(string-append "'" (assoc-ref inputs "libgnomekbd")
|
||||||
|
"/bin/gkbd-keyboard-display'")))
|
||||||
#t))
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
@ -5827,6 +5831,7 @@ properties, screen resolution, and other GNOME parameters.")
|
||||||
("ibus" ,ibus)
|
("ibus" ,ibus)
|
||||||
("libcanberra" ,libcanberra)
|
("libcanberra" ,libcanberra)
|
||||||
("libcroco" ,libcroco)
|
("libcroco" ,libcroco)
|
||||||
|
("libgnomekbd" ,libgnomekbd) ;for gkbd-keyboard-display
|
||||||
("libgweather" ,libgweather)
|
("libgweather" ,libgweather)
|
||||||
("libsoup" ,libsoup)
|
("libsoup" ,libsoup)
|
||||||
("mesa-headers" ,mesa-headers)
|
("mesa-headers" ,mesa-headers)
|
||||||
|
|
Loading…
Reference in New Issue