gnu: foot: Update to 1.16.2.
* gnu/packages/terminals.scm (foot): Update to 1.16.2. [arguments]: Use gexps. Change-Id: I0615f6251a918a572369c05b126853f79e9fca4c Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
ada7e0d042
commit
809f461ec1
1 changed files with 20 additions and 18 deletions
|
@ -37,6 +37,7 @@
|
||||||
;;; Copyright © 2023 Aaron Covrig <aaron.covrig.us@ieee.org>
|
;;; Copyright © 2023 Aaron Covrig <aaron.covrig.us@ieee.org>
|
||||||
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
|
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
|
||||||
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||||
|
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -834,24 +835,26 @@ (define-public cool-retro-term
|
||||||
(define-public foot
|
(define-public foot
|
||||||
(package
|
(package
|
||||||
(name "foot")
|
(name "foot")
|
||||||
(version "1.15.3")
|
(version "1.16.2")
|
||||||
(home-page "https://codeberg.org/dnkl/foot")
|
(home-page "https://codeberg.org/dnkl/foot")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference (url home-page) (commit version)))
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "00wac8li1ac8ncmnlqvz3xnr5pi8gj4v3v341n0h2zzaayv9ngw5"))))
|
||||||
"1a224i2i7qk170kf2rzyxqcv3lnx9f548lwa37jgjr7i339x4zwf"))))
|
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; Using a "release" build is recommended both for performance, and
|
(list
|
||||||
|
;; Using a "release" build is recommended both for performance, and
|
||||||
;; also to address a GCC 10 issue when doing PGO builds.
|
;; also to address a GCC 10 issue when doing PGO builds.
|
||||||
#:build-type "release"
|
#:build-type "release"
|
||||||
;; Enable LTO as recommended by INSTALL.md.
|
;; Enable LTO as recommended by INSTALL.md.
|
||||||
#:configure-flags '("-Db_lto=true")))
|
#:configure-flags #~'("-Db_lto=true")))
|
||||||
(native-inputs
|
(native-inputs (list ncurses ;for 'tic'
|
||||||
(list ncurses ;for 'tic'
|
|
||||||
pkg-config scdoc wayland-protocols))
|
pkg-config scdoc wayland-protocols))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
;; FIXME: This should only be located in 'ncurses'. Nonetheless it is
|
;; FIXME: This should only be located in 'ncurses'. Nonetheless it is
|
||||||
|
@ -859,8 +862,7 @@ (define-public foot
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "TERMINFO_DIRS")
|
(variable "TERMINFO_DIRS")
|
||||||
(files '("share/terminfo")))))
|
(files '("share/terminfo")))))
|
||||||
(inputs
|
(inputs (list fcft libxkbcommon wayland))
|
||||||
(list fcft libxkbcommon wayland))
|
|
||||||
(synopsis "Wayland-native terminal emulator")
|
(synopsis "Wayland-native terminal emulator")
|
||||||
(description
|
(description
|
||||||
"@command{foot} is a terminal emulator for systems using the Wayland
|
"@command{foot} is a terminal emulator for systems using the Wayland
|
||||||
|
|
Loading…
Reference in a new issue