From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH] Add mpc, the mpd client Date: Sat, 28 Feb 2015 18:24:44 +0100 Message-ID: <87egpahrtv.fsf@denknerd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51911) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRl8E-0008I9-Lj for guix-devel@gnu.org; Sat, 28 Feb 2015 12:24:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YRl8B-0006IL-FL for guix-devel@gnu.org; Sat, 28 Feb 2015 12:24:50 -0500 Received: from mx02.posteo.de ([89.146.194.165]:57640) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRl8B-0006I3-9D for guix-devel@gnu.org; Sat, 28 Feb 2015 12:24:47 -0500 Received: from dovecot03.posteo.de (unknown [185.67.36.28]) by mx02.posteo.de (Postfix) with ESMTPS id 4E99E22B47CC for ; Sat, 28 Feb 2015 18:24:45 +0100 (CET) Received: from mail.posteo.de (localhost [127.0.0.1]) by dovecot03.posteo.de (Postfix) with ESMTPSA id 3kvZNs2ZfTz5vN9 for ; Sat, 28 Feb 2015 18:24:45 +0100 (CET) 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 --=-=-= Content-Type: text/plain Hello, Here's mpc, packaged as mpd-mpc, since mpc, Andreas' library, has already squatted the name 'mpc' :p Unhello, p. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-mpd-mpc-Add-mpc-the-client-for-mpd.patch >From 20110c1b5d4761b26910d8958d150ced68c1c60a Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Sat, 28 Feb 2015 18:22:03 +0100 Subject: [PATCH] gnu: mpd-mpc: Add mpc, the client for mpd. * gnu/packages/mpd.scm (mpd-mpc): Add mpc, the command-line client for mpd. --- gnu/packages/mpd.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 550e75d..8e798ee 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -45,6 +45,7 @@ #:use-module (gnu packages xiph) #:export (libmpdclient mpd + mpd-mpc ncmpc ncmpcpp)) @@ -130,6 +131,28 @@ protocol.") (home-page "http://www.musicpd.org/") (license license:gpl2))) +(define mpd-mpc + (package + (name "mpd-mpc") + (version "0.26") + (source (origin + (method url-fetch) + (uri + (string-append "http://www.musicpd.org/download/mpc/" + (car (string-split version #\.)) + "/mpc-" version ".tar.xz")) + (sha256 + (base32 + "0hp2qv6w2v902dhrmck5hg32s1ai6xiv9n61a3n6prfcfdqmywr0")))) + (build-system gnu-build-system) + (inputs `(("libmpdclient" ,libmpdclient))) + (native-inputs `(("pkg-config" ,pkg-config))) + (synopsis "Music Player Daemon client") + (description "MPC is a minimalist command line interface to MPD, the music +player daemon.") + (home-page "http://www.musicpd.org/clients/mpc/") + (license license:gpl2))) + (define ncmpc (package (name "ncmpc") -- 2.3.1 --=-=-=--