GNU bug report logs -
#47148
[PATCH] gnu: Add countdown.
Previous Next
Reported by: Ryan Prior <rprior <at> protonmail.com>
Date: Mon, 15 Mar 2021 00:42:01 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Thu, 18 Mar 2021 19:42:00 +0100
with message-id <87blbguww7.fsf <at> nicolasgoaziou.fr>
and subject line Re: [bug#47148] [PATCH] gnu: Add countdown.
has caused the debbugs.gnu.org bug report #47148,
regarding [PATCH] gnu: Add countdown.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
47148: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47148
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/time.scm (countdown): New variable.
Also adds copyright, adds necessary module dependencies, and sorts them alphabetically.
---
gnu/packages/time.scm | 48 +++++++++++++++++++++++++++++++++++--------
1 file changed, 40 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 73e7f04834..20ce76d8d0 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -18,6 +18,7 @@
;;; Copyright © 2019 Pierre Langlois <pierre.langlois <at> gmx.com>
;;; Copyright © 2020 Lars-Dominik Braun <ldb <at> leibniz-psychology.org>
;;; Copyright © 2020 Tanguy Le Carrour <tanguy <at> bioneland.org>
+;;; Copyright © 2021 Ryan Prior <rprior <at> protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -35,18 +36,22 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages time)
- #:use-module (guix licenses)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix git-download)
- #:use-module (guix build-system gnu)
- #:use-module (guix build-system python)
- #:use-module (gnu packages)
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages golang)
#:use-module (gnu packages perl)
#:use-module (gnu packages python)
- #:use-module (gnu packages python-xyz))
+ #:use-module (gnu packages python-xyz)
+ #:use-module (gnu packages terminals)
+ #:use-module (gnu packages textutils)
+ #:use-module (gnu packages)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix build-system go)
+ #:use-module (guix build-system python)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix licenses)
+ #:use-module (guix packages))
(define-public time
(package
@@ -510,3 +515,30 @@ datetime type.")
modifies the @code{time}, @code{gettimeofday} and @code{clock_gettime} system
calls.")
(license gpl2)))
+
+(define-public countdown
+ (package
+ (name "countdown")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/antonmedv/countdown")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0pdaw1krr0bsl4amhwx03v2b02iznvwvqn7af5zp4fkzjaj14cdw"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/antonmedv/countdown"))
+ (native-inputs
+ `(("runewidth" ,go-github.com-mattn-go-runewidth)
+ ("termbox" ,go-github.com-nsf-termbox-go)))
+ (home-page "https://github.com/antonmedv/countdown")
+ (synopsis "Counts to zero with a text user interface")
+ (description
+ "Countdown provides a fancy text display while it counts down to zero
+from a starting point you provide. The user can pause and resume the
+countdown from the text user interface.")
+ (license expat)))
--
2.30.2
[Message part 3 (message/rfc822, inline)]
Hello,
Ryan Prior via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/time.scm (countdown): New variable.
Applied. Thank you.
Regards,
--
Nicolas Goaziou
This bug report was last modified 4 years and 64 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.