[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48364] [PATCH v2 7/7] * gnu/packages/time.scm (tz): New variable.
From: |
jgart |
Subject: |
[bug#48364] [PATCH v2 7/7] * gnu/packages/time.scm (tz): New variable. |
Date: |
Sat, 18 Dec 2021 15:27:55 -0500 |
From: Guix Together <jgart@dismail.de>
Co-authored-by: jgart <jgart@dismail.de>
Co-authored-by: Jorge Acereda <jacereda@gmail.com>
---
gnu/packages/time.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 97de5485ef..d4ff11228c 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -514,6 +514,39 @@ (define-public datefudge
calls.")
(license gpl2)))
+(define-public tz
+ (package
+ (name "tz")
+ (version "0.6.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/oz/tz")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1nbl13xd95np89sbx8fn0jqrh1iy17hsy70kq31hmcvyns8dljhg"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:go ,go-1.17
+ #:import-path "github.com/oz/tz"
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key import-path tests? #:allow-other-keys)
+ (when tests?
+ (invoke "go" "test" "-cover" import-path)))))))
+ (inputs
+ `(("github.com/charmbracelet/bubbletea"
,go-github-com-charmbracelet-bubbletea)
+ ("github.com/muesli/termenv" ,go-github-com-muesli-termenv)))
+ (home-page "https://github.com/oz/tz")
+ (synopsis "TUI time zone helper")
+ (description
+"@command{tz} helps you schedule things across time zones. It is an
interactive
+TUI program that displays time across a few time zones of your choosing.")
+ (license gpl3+)))
+
(define-public countdown
(package
(name "countdown")
--
2.34.0
- [bug#48364] [PATCH v2 4/7] * gnu/packages/golang.scm (go-github-com-muesli-reflow-wordwrap): Update to 0.3.0., (continued)
- [bug#48364] [PATCH v2 4/7] * gnu/packages/golang.scm (go-github-com-muesli-reflow-wordwrap): Update to 0.3.0., jgart, 2021/12/18
- [bug#48364] [PATCH 3/7] * gnu/packages/golang.scm (go-github-com-containerd-console): New variable., jgart, 2021/12/18
- [bug#48364] [PATCH 7/7] * gnu/packages/time.scm (tz): New variable., jgart, 2021/12/18
- [bug#48364] [PATCH 5/7] * gnu/packages/golang.scm (go-github-com-muesli-reflow-truncate): New variable., jgart, 2021/12/18
- [bug#48364] [PATCH v2 1/7] * gnu/packages/golang.scm (go-golang-org-colorful): Update to 1.2.0., jgart, 2021/12/18
- [bug#48364] [PATCH v2 2/7] * gnu/packages/golang.scm (go-github-com-charmbracelet-bubbletea): New variable., jgart, 2021/12/18
- [bug#48364] [PATCH 6/7] * gnu/packages/golang.scm (go-github-com-muesli-termenv): Update to 0.8.1., jgart, 2021/12/18
- [bug#48364] [PATCH v2 5/7] * gnu/packages/golang.scm (go-github-com-muesli-reflow-truncate): New variable., jgart, 2021/12/18
- [bug#48364] [PATCH v2 3/7] * gnu/packages/golang.scm (go-github-com-containerd-console): New variable., jgart, 2021/12/18
- [bug#48364] [PATCH v2 6/7] * gnu/packages/golang.scm (go-github-com-muesli-termenv): Update to 0.8.1., jgart, 2021/12/18
- [bug#48364] [PATCH v2 7/7] * gnu/packages/time.scm (tz): New variable.,
jgart <=