gnu: kbd: Recursively search $LOADKEYS_KEYMAP_PATH.
Fix a regression since commit fd7000fe33
.
* gnu/packages/linux.scm (kbd)[native-search-paths]: Add a double asterisk.
This commit is contained in:
parent
9383cee38d
commit
674d4e1380
|
@ -1837,7 +1837,10 @@ system.")
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "LOADKEYS_KEYMAP_PATH")
|
(variable "LOADKEYS_KEYMAP_PATH")
|
||||||
(files (list "share/keymaps")))))
|
;; Append ‘/**’ to recursively search all directories. One can then
|
||||||
|
;; run (for example) ‘loadkeys en-latin9’ instead of having to find
|
||||||
|
;; and type ‘i386/colemak/en-latin9’ on a mislabelled keyboard.
|
||||||
|
(files (list "share/keymaps/**")))))
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
(home-page "http://kbd-project.org/")
|
(home-page "http://kbd-project.org/")
|
||||||
(synopsis "Linux keyboard utilities and keyboard maps")
|
(synopsis "Linux keyboard utilities and keyboard maps")
|
||||||
|
|
Loading…
Reference in New Issue