diff options
author | Stefan Reichör <stefan@xsteve.at> | 2018-02-02 23:30:16 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-02-06 17:02:46 +0100 |
commit | 19d93ef537242ddf10228e38813bfad95788c878 (patch) | |
tree | 8338dd23507b734b0a6664b3580f3bd2d99d7a78 | |
parent | 9805ad6f87612b5c305c099c38684607cecfb328 (diff) | |
download | patches-19d93ef537242ddf10228e38813bfad95788c878.tar patches-19d93ef537242ddf10228e38813bfad95788c878.tar.gz |
gnu: Add curseradio.
* gnu/packages/music.scm (curseradio): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/music.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 7aba825816..2db8ffea30 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2317,6 +2317,33 @@ analogue-like user interface.") socket or command line.") (license license:gpl3+)))) +(define-public curseradio + (let ((commit "1bd4bd0faeec675e0647bac9a100b526cba19f8d") + (revision "1")) + (package + (name "curseradio") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chronitis/curseradio.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "11bf0jnj8h2fxhpdp498189r4s6b47vy4wripv0z4nx7lxajl88i")))) + (build-system python-build-system) + (propagated-inputs + `(("python-lxml" ,python-lxml) + ("python-requests" ,python-requests) + ("python-pyxdg" ,python-pyxdg) + ("mpv" ,mpv))) + (home-page "https://github.com/chronitis/curseradio") + (synopsis "Command-line Internet radio player") + (description "Curseradio is a Curses-based radio player that uses a +tune-in sender list from @url{http://opml.radiotime.com}.") + (license license:expat)))) + (define-public pianobar (package (name "pianobar") |