diff options
author | Ashish SHUKLA <ashish.is@lostca.se> | 2025-03-17 20:06:29 +0100 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-03-22 14:41:35 +0800 |
commit | f968e0fa2da33ed5ec8518a33313965dd96bd3e7 (patch) | |
tree | 6c8aeb1ab38ebdfe2890fd531c0ae45f231756f9 | |
parent | 2987993d971381681477e523f9ee6121634973cb (diff) | |
download | guix-f968e0fa2da33ed5ec8518a33313965dd96bd3e7.tar.gz guix-f968e0fa2da33ed5ec8518a33313965dd96bd3e7.zip |
gnu: foot: Update to 1.21.0.
* gnu/packages/terminals.scm (foot): Update to 1.21.0.
[native-inputs, inputs]: Replace wayland-protocols with
wayland-protocols-next.
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/terminals.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index ab11d9bbd4..ccf81e15f8 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -851,7 +851,7 @@ eye-candy, customizable, and reasonably lightweight.") (define-public foot (package (name "foot") - (version "1.20.2") + (version "1.21.0") (home-page "https://codeberg.org/dnkl/foot") (source (origin @@ -861,7 +861,7 @@ eye-candy, customizable, and reasonably lightweight.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0m6i361wg86zxah28lp9kdxawifrzgz2gbvs9b0ynwl7292nhw5n")))) + (base32 "19hkw4g2l00wasmk5dn34rf3bhqh6zbwwhvz98bdcv90p761jws4")))) (build-system meson-build-system) (arguments (list @@ -878,14 +878,14 @@ eye-candy, customizable, and reasonably lightweight.") (list wayland pkg-config-for-build) '()) (list ncurses ;for 'tic' - pkg-config scdoc wayland-protocols))) + pkg-config scdoc wayland-protocols-next))) (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 wayland-protocols)) + (inputs (list fcft libxkbcommon wayland wayland-protocols-next)) (synopsis "Wayland-native terminal emulator") (description "@command{foot} is a terminal emulator for systems using the Wayland |