diff options
author | Fulbert <fulbert@bluewin.ch> | 2020-10-20 23:51:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-10-27 18:00:28 +0100 |
commit | 9b390921b41b1de12d80e0a8c531010294fd05f7 (patch) | |
tree | cb08407efd2b12a750897fe2386ffd7640b8de47 | |
parent | 2ade5bdeb8978d252f298df7150b8d1a359e618d (diff) |
gnu: alacritty: Add search path for 'TERMINFO_DIRS'.
* gnu/packages/terminals.scm (alacritty)[native-search-paths]: New field.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/terminals.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index e596c1b81f..f17c36cf2b 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -1312,6 +1312,12 @@ made by suckless.") ("ncurses" ,ncurses) ("pkg-config" ,pkg-config) ("python3" ,python))) + (native-search-paths + ;; FIXME: This should only be located in 'ncurses'. Nonetheless it is + ;; provided for usability reasons. See <https://bugs.gnu.org/22138>. + (list (search-path-specification + (variable "TERMINFO_DIRS") + (files '("share/terminfo"))))) (home-page "https://github.com/alacritty/alacritty") (synopsis "GPU-accelerated terminal emulator") (description |