--- Begin Message ---
Subject: |
[PATCH] gnu: Add emacs-tmr. |
Date: |
Sat, 6 Aug 2022 22:16:18 -0500 |
* gnu/packages/emacs-xyz.scm (emacs-tmr): New variable.
---
gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2b360e53cc..bc81d3a44b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13675,6 +13675,27 @@ (define-public emacs-logos
(license (list license:gpl3+
license:fdl1.3+)))) ; GFDLv1.3+ for the manual
+(define-public emacs-tmr
+ (package
+ (name "emacs-tmr")
+ (version "0.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~protesilaos/tmr")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1vz9zfqap221baiy41wpxph33g6h2plnanzgpjs0wk8dz1fpwfky"))))
+ (build-system emacs-build-system)
+ (native-inputs (list texinfo))
+ (home-page "https://protesilaos.com/emacs/tmr/")
+ (synopsis "Set timers using a convenient notation")
+ (description
+"Emacs package to set timers using a convenient notation")
+ (license license:gpl3+)))
+
(define-public emacs-gn-mode
(package
(name "emacs-gn-mode")
--
2.37.1
--- End Message ---
--- Begin Message ---
Subject: |
Re: [bug#57027] [PATCH v2] gnu: Add emacs-tmr. |
Date: |
Fri, 26 Aug 2022 10:29:53 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) |
Hello,
jgart via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-tmr): New variable.
Applied. Thank you.
> + (description
> +"Emacs package to set timers using a convenient notation.")
I changed this into a full sentence.
Regards,
--
Nicolas Goaziou
--- End Message ---