mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: ncmpcpp: Update to 0.10.1.
* gnu/packages/mpd.scm (ncmpcpp): Update to 0.10.1. [origin]: Change URI to github. [native-inputs]: Add libtool, autoconf-2.71, automake. [arguments]: Use G-expressions. Change-Id: Id2662c10c143736d10320550b6ce6fffe841984c
This commit is contained in:
parent
f0e4288376
commit
2b0eb7be45
1 changed files with 19 additions and 15 deletions
|
|
@ -296,28 +296,32 @@ terminal using ncurses.")
|
|||
(define-public ncmpcpp
|
||||
(package
|
||||
(name "ncmpcpp")
|
||||
(version "0.9.2")
|
||||
(version "0.10.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "https://ncmpcpp.rybczak.net/stable/ncmpcpp-"
|
||||
version ".tar.bz2"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ncmpcpp/ncmpcpp")
|
||||
(commit (string-append version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"06rs734n120jp51hr0fkkhxrm7zscbhpdwls0m5b5cccghazdazs"))))
|
||||
"1chs7xpbsd1kmrdi4z41s0qcl7b661548jj6va1najgm5r5mwxy3"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs (list libmpdclient
|
||||
boost
|
||||
readline
|
||||
ncurses
|
||||
taglib
|
||||
(inputs (list boost
|
||||
curl
|
||||
icu4c
|
||||
curl))
|
||||
libmpdclient
|
||||
ncurses
|
||||
readline
|
||||
taglib))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(list autoconf-2.71
|
||||
automake
|
||||
libtool
|
||||
pkg-config))
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
'("BOOST_LIB_SUFFIX=" "--with-taglib" "--enable-clock")))
|
||||
(list #:configure-flags
|
||||
#~(list "BOOST_LIB_SUFFIX=" "--with-taglib" "--enable-clock")))
|
||||
(synopsis "Featureful ncurses based MPD client inspired by ncmpc")
|
||||
(description "Ncmpcpp is an mpd client with a UI very similar to ncmpc,
|
||||
but it provides new useful features such as support for regular expressions
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue