mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: Add emacs-eradio.
* gnu/packages/emacs-xyz.scm (emacs-eradio): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
6c8e719537
commit
0d490b1e13
1 changed files with 25 additions and 0 deletions
|
@ -124,6 +124,7 @@
|
||||||
;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
|
;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
|
||||||
;;; Copyright © 2022 Demis Balbach <db@minikn.xyz>
|
;;; Copyright © 2022 Demis Balbach <db@minikn.xyz>
|
||||||
;;; Copyright © 2020, 2021, 2022, 2023 Andrew Tropin <andrew@trop.in>
|
;;; Copyright © 2020, 2021, 2022, 2023 Andrew Tropin <andrew@trop.in>
|
||||||
|
;;; Copyright © 2023 Dominik Delgado Steuter <d@delgado.nrw>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -3101,6 +3102,30 @@ (define-public emacs-marginalia-emprise
|
||||||
playback status, artist name and title for Emprise using Marginalia.")
|
playback status, artist name and title for Emprise using Marginalia.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-eradio
|
||||||
|
(let ((commit "47769986c79def84307921f0277e9bb2714756c2")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "emacs-eradio")
|
||||||
|
(version (git-version "0.1" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/olavfosse/eradio")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0lks2pph44qxc9l34nr55ha667974r8ckxdwmvcp6v9mnm05317s"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/olavfosse/eradio")
|
||||||
|
(synopsis "Simple radio player for GNU Emacs")
|
||||||
|
(description
|
||||||
|
"Eradio is a simple internet radio player for Emacs. Start, stop or
|
||||||
|
toggle custom-defined channels. An external media player like mpv or VLC is
|
||||||
|
required.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Miscellaneous.
|
;;; Miscellaneous.
|
||||||
|
|
Loading…
Reference in a new issue