From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47853) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ehjrN-0006QT-Bo for guix-patches@gnu.org; Fri, 02 Feb 2018 17:31:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ehjrK-0007qw-7r for guix-patches@gnu.org; Fri, 02 Feb 2018 17:31:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:46773) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ehjrK-0007qe-45 for guix-patches@gnu.org; Fri, 02 Feb 2018 17:31:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ehjrJ-0000fS-RV for guix-patches@gnu.org; Fri, 02 Feb 2018 17:31:01 -0500 Subject: [bug#30330] [PATCH] gnu: Add curseradio. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47733) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ehjr7-0006Ks-4W for guix-patches@gnu.org; Fri, 02 Feb 2018 17:30:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ehjr4-0007iE-0n for guix-patches@gnu.org; Fri, 02 Feb 2018 17:30:49 -0500 Received: from dd5424.kasserver.com ([85.13.138.252]:53788) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ehjr3-0007h2-Oy for guix-patches@gnu.org; Fri, 02 Feb 2018 17:30:45 -0500 From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Fri, 02 Feb 2018 23:30:16 +0100 Message-ID: <151761061691.29518.11001816987162875591.stgit@sandburg> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30330@debbugs.gnu.org * gnu/packages/music.scm (curseradio): New variable. --- gnu/packages/music.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 2e8bc17..33795e5 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 "Curses based radio player that uses a tunein sender list from +@url{http://opml.radiotime.com}.") + (license license:expat)))) + (define-public pianobar (package (name "pianobar")