emacs-zyz: Add emacs-listen

This commit is contained in:
Collin J. Doering 2024-04-21 10:03:02 -04:00
parent 7bb41e9c81
commit deef3bf381
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 21 additions and 0 deletions

View File

@ -34,6 +34,7 @@
#:use-module (gnu packages statistics)
#:use-module (gnu packages erlang)
#:use-module (gnu packages ocaml)
#:use-module (gnu packages video)
#:use-module (srfi srfi-1)
#:use-module (ice-9 match))
@ -799,3 +800,23 @@ TODO headings.")
(synopsis "UI (web) representation of org-agenda")
(description "Shows your org-mode agenda in a web-based calendar view.")
(license license:gpl3+)))
(define-public emacs-listen
(package
(name "emacs-listen")
(version "0.9")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/listen-" version
".tar"))
(sha256
(base32 "1g1sv8fs8vl93fah7liaqzgwvc4b1chasx5151ayizz4q2qgwwbp"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-persist emacs-taxy emacs-taxy-magit-section
emacs-transient vlc))
(home-page "https://github.com/alphapapa/listen.el")
(synopsis "Audio/Music player")
(description
"Audio/music player for Emacs.")
(license license:gpl3+)))