unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add ncmpc
@ 2014-03-06  1:51 David Thompson
  2014-03-06 11:29 ` David Thompson
  0 siblings, 1 reply; 3+ messages in thread
From: David Thompson @ 2014-03-06  1:51 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 114 bytes --]

Hello all,

This patch adds a package recipe for ncmpc, a music player daemon
client.

How does it look?

- Dave


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-ncmpc.patch --]
[-- Type: text/x-diff, Size: 2056 bytes --]

From c60b3b94bf3ea0981ec9be453036f1c57aed4f0f Mon Sep 17 00:00:00 2001
From: David Thompson <dthompson2@worcester.edu>
Date: Wed, 5 Mar 2014 20:45:55 -0500
Subject: [PATCH] gnu: Add ncmpc.

* gnu/packages/mpd.scm (ncmpc): New variable.
---
 gnu/packages/mpd.scm | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index b2c5dec..00f766f 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -29,13 +29,15 @@
   #:use-module (gnu packages glib)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages mp3)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages sqlite)
   #:use-module (gnu packages video)
   #:use-module (gnu packages xiph)
   #:export (libmpdclient
-            mpd))
+            mpd
+            ncmpc))
 
 (define libmpdclient
   (package
@@ -121,3 +123,27 @@ can play a variety of sound files while being controlled by its network
 protocol.")
     (home-page "http://www.musicpd.org/")
     (license license:gpl2)))
+
+(define ncmpc
+  (package
+    (name "ncmpc")
+    (version "0.21")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append "http://musicpd.org/download/ncmpc/"
+                              (car (string-split version #\.))
+                              "/ncmpc-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1gpy6rr0awl6xgkswmr8rdvqfkrz83rmwk441c00a9d4z3zb1a16"))))
+    (build-system gnu-build-system)
+    (inputs `(("glib" ,glib)
+              ("libmpdclient" ,libmpdclient)
+              ("pkg-config" ,pkg-config)
+              ("ncurses" ,ncurses)))
+    (synopsis "A curses Music Player Daemon client")
+    (description "ncmpc is a fully featured MPD client, which runs in a
+terminal using ncurses.")
+    (home-page "http://www.musicpd.org/clients/ncmpc/")
+    (license license:gpl2)))
-- 
1.8.5.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add ncmpc
  2014-03-06  1:51 [PATCH] gnu: Add ncmpc David Thompson
@ 2014-03-06 11:29 ` David Thompson
  2014-03-06 13:03   ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: David Thompson @ 2014-03-06 11:29 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 63 bytes --]

Here's an updated patch that makes pkg-config a native input.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-ncmpc.patch --]
[-- Type: text/x-diff, Size: 2065 bytes --]

From 05b688c100292d9407486235a2ab8f0ac2b27446 Mon Sep 17 00:00:00 2001
From: David Thompson <dthompson2@worcester.edu>
Date: Wed, 5 Mar 2014 20:45:55 -0500
Subject: [PATCH] gnu: Add ncmpc.

* gnu/packages/mpd.scm (ncmpc): New variable.
---
 gnu/packages/mpd.scm | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index b2c5dec..04b34ea 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -29,13 +29,15 @@
   #:use-module (gnu packages glib)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages mp3)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages sqlite)
   #:use-module (gnu packages video)
   #:use-module (gnu packages xiph)
   #:export (libmpdclient
-            mpd))
+            mpd
+            ncmpc))
 
 (define libmpdclient
   (package
@@ -121,3 +123,27 @@ can play a variety of sound files while being controlled by its network
 protocol.")
     (home-page "http://www.musicpd.org/")
     (license license:gpl2)))
+
+(define ncmpc
+  (package
+    (name "ncmpc")
+    (version "0.21")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append "http://musicpd.org/download/ncmpc/"
+                              (car (string-split version #\.))
+                              "/ncmpc-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1gpy6rr0awl6xgkswmr8rdvqfkrz83rmwk441c00a9d4z3zb1a16"))))
+    (build-system gnu-build-system)
+    (inputs `(("glib" ,glib)
+              ("libmpdclient" ,libmpdclient)
+              ("ncurses" ,ncurses)))
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (synopsis "A curses Music Player Daemon client")
+    (description "ncmpc is a fully featured MPD client, which runs in a
+terminal using ncurses.")
+    (home-page "http://www.musicpd.org/clients/ncmpc/")
+    (license license:gpl2)))
-- 
1.8.5.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add ncmpc
  2014-03-06 11:29 ` David Thompson
@ 2014-03-06 13:03   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2014-03-06 13:03 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel

David Thompson <dthompson2@worcester.edu> skribis:

> From 05b688c100292d9407486235a2ab8f0ac2b27446 Mon Sep 17 00:00:00 2001
> From: David Thompson <dthompson2@worcester.edu>
> Date: Wed, 5 Mar 2014 20:45:55 -0500
> Subject: [PATCH] gnu: Add ncmpc.
>
> * gnu/packages/mpd.scm (ncmpc): New variable.

Looks good to me, please push.

Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-03-06 13:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-06  1:51 [PATCH] gnu: Add ncmpc David Thompson
2014-03-06 11:29 ` David Thompson
2014-03-06 13:03   ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).