From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fXYVs-0003PU-Ji for guix-patches@gnu.org; Mon, 25 Jun 2018 16:55:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fXYVr-0008Sr-Fo for guix-patches@gnu.org; Mon, 25 Jun 2018 16:55:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55676) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fXYVr-0008SR-Ac for guix-patches@gnu.org; Mon, 25 Jun 2018 16:55:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fXYVr-0007L6-4b for guix-patches@gnu.org; Mon, 25 Jun 2018 16:55:03 -0400 Subject: bug#31947: [PATCH] gnu: Add clyrics. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180623111623.4223-1-ambrevar@gmail.com> Date: Mon, 25 Jun 2018 22:54:18 +0200 In-Reply-To: <20180623111623.4223-1-ambrevar@gmail.com> (Pierre Neidhardt's message of "Sat, 23 Jun 2018 13:16:23 +0200") Message-ID: <876026r3id.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Pierre Neidhardt Cc: 31947-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Pierre Neidhardt skribis: > * gnu/packages/music.scm (clyrics): New variable. Applied with the following tweaks. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 2a1ecd25a..824b03dc0 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -4031,12 +4031,13 @@ MusicBrainz lookup capabilities to their applications.") version ".tar.gz")) (sha256 (base32 - "1l0cg26afnjv8cgk0jbiavbyvq55q1djyigzmi526rpcjjwq9jwn")))) + "1l0cg26afnjv8cgk0jbiavbyvq55q1djyigzmi526rpcjjwq9jwn")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system trivial-build-system) (native-inputs `(("tar" ,tar) ("gzip" ,gzip))) (inputs - `(("bash" ,bash) ; For the wrapped-program. + `(("bash" ,bash) ;for the wrapped program ("perl" ,perl) ("perl-www-mechanize" ,perl-www-mechanize) ("perl-lwp-protocol-https" ,perl-lwp-protocol-https) @@ -4078,12 +4079,9 @@ MusicBrainz lookup capabilities to their applications.") (copy-recursively "plugins" (string-append output "/clyrics")) #t)))) (home-page "https://github.com/trizen/clyrics") - (synopsis "Extensible lyrics fetcher, with daemon support for cmus and mocp") - (description "An extensible lyrics fetcher, with daemon support for cmus and mocp. -Features: - -@itemize -@item support for plugins -@item cmus and mocp daemon mode -@end itemize\n") + (synopsis "Extensible lyrics fetcher") + (description + "Clyrics is an extensible command-line tool to fetch the lyrics of songs. +It can be used in daemon mode along with the Music-on-Console (MOC) and cmus +console music players.") (license license:gpl3+))) --=-=-=--