guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add ncmpcpp


From: Cyrill Schenkel
Subject: [PATCH] gnu: Add ncmpcpp
Date: Sat, 28 Jun 2014 16:52:05 +0200

>From 0c01e9239cc9b19e34323fe5bffb0e3bb2c40fed Mon Sep 17 00:00:00 2001
From: Cyrill Schenkel <address@hidden>
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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]