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.
master
Tobias Geerinckx-Rice 2017-07-13 00:07:45 +02:00
parent 9383cee38d
commit 674d4e1380
No known key found for this signature in database
GPG Key ID: 91CCDB9B48541B99
1 changed files with 4 additions and 1 deletions

View File

@ -1837,7 +1837,10 @@ system.")
(native-search-paths
(list (search-path-specification
(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)))
(home-page "http://kbd-project.org/")
(synopsis "Linux keyboard utilities and keyboard maps")