diff options
Diffstat (limited to 'gnu/packages/terminals.scm')
-rw-r--r-- | gnu/packages/terminals.scm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index d6bcb8d093..570de2259e 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -842,7 +842,7 @@ eye-candy, customizable, and reasonably lightweight.") (define-public foot (package (name "foot") - (version "1.13.1") + (version "1.14.0") (home-page "https://codeberg.org/dnkl/foot") (source (origin (method git-fetch) @@ -850,7 +850,7 @@ eye-candy, customizable, and reasonably lightweight.") (file-name (git-file-name name version)) (sha256 (base32 - "0k0zbh6adwr99y9aazlyvp6s1k8zaq2j6x8kqb8q9a5qjjg56lay")))) + "1187805pxygyl547w75i4cl37kaw8y8ng11r5qqldv6fm74k31mk")))) (build-system meson-build-system) (arguments `(;; Using a "release" build is recommended both for performance, and @@ -861,6 +861,12 @@ eye-candy, customizable, and reasonably lightweight.") (native-inputs (list ncurses ;for 'tic' pkg-config scdoc wayland-protocols)) + (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"))))) (inputs (list fcft libxkbcommon wayland)) (synopsis "Wayland-native terminal emulator") @@ -1378,7 +1384,7 @@ terminal are replicated to the others. (define-public tio (package (name "tio") - (version "1.36") + (version "2.5") (source (origin (method url-fetch) @@ -1386,7 +1392,7 @@ terminal are replicated to the others. "https://github.com/tio/tio/releases/download/v" version "/tio-" version ".tar.xz")) (sha256 - (base32 "0z27ghxjiw7y587l49jsb0anylm08m7imqjiwr21k1frxvydswsa")))) + (base32 "19s41i8f3kxchlaibp7wkq8gqgbpfdn0srkf1wcfx357j3p54f86")))) (build-system meson-build-system) (native-inputs (list pkg-config)) (inputs (list libinih)) |