From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyrill Schenkel Subject: [PATCH] gnu: Add ncmpcpp Date: Sat, 28 Jun 2014 16:52:05 +0200 Message-ID: <87zjgxaxyi.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/x-diff Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0tzO-0007nW-HN for guix-devel@gnu.org; Sat, 28 Jun 2014 10:52:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X0tzM-0006H1-Ae for guix-devel@gnu.org; Sat, 28 Jun 2014 10:52:26 -0400 Received: from mail-wi0-x22f.google.com ([2a00:1450:400c:c05::22f]:59507) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0tzM-0006Gt-3J for guix-devel@gnu.org; Sat, 28 Jun 2014 10:52:24 -0400 Received: by mail-wi0-f175.google.com with SMTP id r20so4125859wiv.14 for ; Sat, 28 Jun 2014 07:52:22 -0700 (PDT) Received: from SIRIUS09 ([2a02:1205:5016:3160:beae:c5ff:fe67:f585]) by mx.google.com with ESMTPSA id jv9sm28427704wjc.28.2014.06.28.07.52.21 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 28 Jun 2014 07:52:21 -0700 (PDT) Content-Disposition: inline; filename=0001-gnu-Add-ncmpcpp.patch List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Guix-devel >From 0c01e9239cc9b19e34323fe5bffb0e3bb2c40fed Mon Sep 17 00:00:00 2001 From: Cyrill Schenkel Date: Sat, 28 Jun 2014 16:36:49 +0200 Subject: [PATCH] gnu: Add ncmpcpp. * gnu/packages/mpd.scm (ncmpcpp): New variable. --- gnu/packages/mpd.scm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 5841e8b..179a9a5 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -39,7 +39,8 @@ #:use-module (gnu packages xiph) #:export (libmpdclient mpd - ncmpc)) + ncmpc + ncmpcpp)) (define libmpdclient (package @@ -147,3 +148,25 @@ protocol.") terminal using ncurses.") (home-page "http://www.musicpd.org/clients/ncmpc/") (license license:gpl2))) + +(define ncmpcpp + (package + (name "ncmpcpp") + (version "0.5.10") + (source (origin + (method url-fetch) + (uri + (string-append "http://ncmpcpp.rybczak.net/stable/ncmpcpp-" + version ".tar.bz2")) + (sha256 + (base32 + "1a54g6dary1rirrny9fd0hpxpyyffypni3mpbdpvmjnrl9v56vgz")))) + (build-system gnu-build-system) + (inputs `(("libmpdclient" ,libmpdclient) + ("ncurses" ,ncurses))) + (native-inputs `(("pkg-config" ,pkg-config))) + (synopsis "featureful ncurses based MPD client inspired by ncmpc") + (description "Ncmpcpp is very similar to ncmpc if it comes to user +interface, but it provides a lot of new useful features. ") + (home-page "http://ncmpcpp.rybczak.net/") + (license license:gpl2))) -- 2.0.0