gnu: Add emacs-tmr.

* gnu/packages/emacs-xyz.scm (emacs-tmr): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
jgart 2022-08-09 19:31:50 -05:00 committed by Nicolas Goaziou
parent fd8f5f7ebc
commit f4fc71284e
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -13777,6 +13777,40 @@ (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)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-ffplay
(lambda* (#:key inputs #:allow-other-keys)
(let ((ffplay (search-input-file inputs "/bin/ffplay")))
(make-file-writable "tmr.el")
(substitute* "tmr.el"
(("\"ffplay")
(string-append "\"" ffplay)))))))))
(native-inputs (list texinfo))
(inputs (list ffmpeg))
(home-page "https://protesilaos.com/emacs/tmr/")
(synopsis "Set timers using a convenient notation")
(description
"TMR is an Emacs package that provides facilities for setting timers
using a convenient notation.")
(license license:gpl3+)))
(define-public emacs-gn-mode
(package
(name "emacs-gn-mode")