mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
0b4e5f7e5b
commit
fbde7b08e5
1 changed files with 8 additions and 4 deletions
|
@ -185,7 +185,7 @@ (define-public mpd-mpc
|
|||
(define-public ncmpc
|
||||
(package
|
||||
(name "ncmpc")
|
||||
(version "0.27")
|
||||
(version "0.29")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
|
@ -194,12 +194,16 @@ (define-public ncmpc
|
|||
"/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.")
|
||||
|
|
Loading…
Reference in a new issue