guix-commits
[Top][All Lists]
Advanced

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

01/08: gnu: ncmpc: Update to 0.29.


From: Tobias Geerinckx-Rice
Subject: 01/08: gnu: ncmpc: Update to 0.29.
Date: Thu, 23 Aug 2018 21:16:57 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit fbde7b08e5ae0f45a3d6e89e2a3795a399a1e6dc
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Aug 24 00:57:12 2018 +0200

    gnu: ncmpc: Update to 0.29.
    
    * gnu/packages/mpd.scm (ncmpc): Update to 0.29.
    [build-system]: Switch to Meson.
    [arguments]: Find ncurses.h.
    [native-inputs]: Add gettext.
---
 gnu/packages/mpd.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 29d59c5..2554ec9 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -185,7 +185,7 @@ player daemon.")
 (define-public ncmpc
   (package
     (name "ncmpc")
-    (version "0.27")
+    (version "0.29")
     (source (origin
               (method url-fetch)
               (uri
@@ -194,12 +194,16 @@ player daemon.")
                               "/ncmpc-" version ".tar.xz"))
               (sha256
                (base32
-                "1n8m7syhpgx24hfipixv66h2izn229jkxsmh2q5dzkv9r0znm8pr"))))
-    (build-system gnu-build-system)
+                "04jzv1hfdvgbn391523jb2h3yhq9a40pjrg41sl3wf3jf6vajs7g"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "-Dcurses=ncurses")))
     (inputs `(("glib" ,glib)
               ("libmpdclient" ,libmpdclient)
               ("ncurses" ,ncurses)))
-    (native-inputs `(("pkg-config" ,pkg-config)))
+    (native-inputs `(("gettext" ,gettext-minimal) ; for xgettext
+                     ("pkg-config" ,pkg-config)))
     (synopsis "Curses Music Player Daemon client")
     (description "ncmpc is a fully featured MPD client, which runs in a
 terminal using ncurses.")



reply via email to

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