mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: tz: Refresh package style.
* gnu/packages/time.scm (tz): [arguments]: Swap to list style. <#:phases>: Swap to default 'check phase. Set <#:install-source?> to #t. [inputs]: Remove labels. [description]: Fix indentation. Change-Id: Id375585c926535015f5c4b8b9964fa455de7ca41
This commit is contained in:
parent
0c1f85084a
commit
702d01a596
1 changed files with 11 additions and 13 deletions
|
@ -23,6 +23,7 @@
|
||||||
;;; Copyright © 2022 Pradana AUMARS <paumars@courrier.dev>
|
;;; Copyright © 2022 Pradana AUMARS <paumars@courrier.dev>
|
||||||
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
||||||
|
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -642,23 +643,20 @@ calls.")
|
||||||
(base32 "1zf5w6338y0s0pf0jlpbqzlbxbx39s93z0bmdaa0cxkxs8cz8xij"))))
|
(base32 "1zf5w6338y0s0pf0jlpbqzlbxbx39s93z0bmdaa0cxkxs8cz8xij"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:go ,go-1.17
|
(list
|
||||||
#:import-path "github.com/oz/tz"
|
#:go go-1.17
|
||||||
#:phases
|
#:install-source? #f
|
||||||
(modify-phases %standard-phases
|
#:import-path "github.com/oz/tz"))
|
||||||
(replace 'check
|
|
||||||
(lambda* (#:key import-path tests? #:allow-other-keys)
|
|
||||||
(when tests?
|
|
||||||
(invoke "go" "test" "-cover" import-path)))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("github.com/charmbracelet/bubbletea" ,go-github-com-charmbracelet-bubbletea)
|
(list go-github-com-charmbracelet-bubbletea
|
||||||
("github.com/tkuchiki/go-timezone" ,go-github-com-tkuchiki-go-timezone)
|
go-github-com-muesli-termenv
|
||||||
("github.com/muesli/termenv" ,go-github-com-muesli-termenv)))
|
go-github-com-tkuchiki-go-timezone))
|
||||||
(home-page "https://github.com/oz/tz")
|
(home-page "https://github.com/oz/tz")
|
||||||
(synopsis "TUI time zone helper")
|
(synopsis "TUI time zone helper")
|
||||||
(description
|
(description
|
||||||
"@command{tz} helps you schedule things across time zones. It is an interactive
|
"@command{tz} helps you schedule things across time zones. It is an
|
||||||
TUI program that displays time across a few time zones of your choosing.")
|
interactive TUI program that displays time across a few time zones of your
|
||||||
|
choosing.")
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
(define-public countdown
|
(define-public countdown
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue