unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57305] [PATCH] gnu: Add emacs-alarm-clock.
@ 2022-08-20  6:56 Arun Isaac
  2022-08-27  9:05 ` bug#57305: " Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Arun Isaac @ 2022-08-20  6:56 UTC (permalink / raw)
  To: 57305; +Cc: Arun Isaac

* gnu/packages/emacs-xyz.scm (emacs-alarm-clock): New variable.
---
 gnu/packages/emacs-xyz.scm | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a3a75c3e07..fe8ba9422d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16,7 +16,7 @@
 ;;; Copyright © 2016, 2019 Alex Griffin <a@ajgrf.com>
 ;;; Copyright © 2016-2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2016, 2017, 2018 Alex Vong <alexvong1995@gmail.com>
-;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2016–2022 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
 ;;; Copyright © 2017, 2018, 2019, 2020, 2022 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2017, 2018, 2019, 2020, 2021, 2022 Clément Lassieur <clement@lassieur.org>
@@ -31992,3 +31992,38 @@ (define-public emacs-vundo
 tree to go back to previous buffer states.  To use vundo, type @kbd{M-x vundo RET} in
 the buffer you want to undo.  An undo tree buffer should pop up.")
     (license license:gpl3+)))
+
+(define-public emacs-alarm-clock
+  (package
+    (name "emacs-alarm-clock")
+    (version "1.0.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/wlemuel/alarm-clock")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "11afq6lnlqdzbll015fx3031bslwfaz5362qgk2ipgqlk872559h"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'configure
+                 (lambda* (#:key inputs #:allow-other-keys)
+                   (substitute* "alarm-clock.el"
+                     (("\"mpg123\"")
+                      (string-append "\"" (search-input-file inputs "/bin/mpg123") "\""))
+                     (("notify-send")
+                      (search-input-file inputs "/bin/notify-send"))))))))
+    (inputs
+     (list libnotify
+           mpg123))
+    (propagated-inputs
+     (list emacs-f))
+    (home-page "https://github.com/wlemuel/alarm-clock")
+    (synopsis "Alarm clock for Emacs")
+    (description "@code{emacs-alarm-clock} provides an alarm clock for
+Emacs.")
+    (license license:gpl3+)))
-- 
2.37.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#57305: [PATCH] gnu: Add emacs-alarm-clock.
  2022-08-20  6:56 [bug#57305] [PATCH] gnu: Add emacs-alarm-clock Arun Isaac
@ 2022-08-27  9:05 ` Nicolas Goaziou
  2022-08-28 11:06   ` [bug#57305] " Arun Isaac
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2022-08-27  9:05 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 57305-done

Hello,

Arun Isaac <arunisaac@systemreboot.net> writes:

> * gnu/packages/emacs-xyz.scm (emacs-alarm-clock): New variable.

Applied. Thank you.

> +    (arguments
> +     (list #:phases

I also #:include'd the "alarm.mp3" file, which is required by default.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#57305] [PATCH] gnu: Add emacs-alarm-clock.
  2022-08-27  9:05 ` bug#57305: " Nicolas Goaziou
@ 2022-08-28 11:06   ` Arun Isaac
  0 siblings, 0 replies; 3+ messages in thread
From: Arun Isaac @ 2022-08-28 11:06 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 57305-done


Thank you!




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-28 11:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-20  6:56 [bug#57305] [PATCH] gnu: Add emacs-alarm-clock Arun Isaac
2022-08-27  9:05 ` bug#57305: " Nicolas Goaziou
2022-08-28 11:06   ` [bug#57305] " Arun Isaac

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).