diff options
| author | Mazin AlHaddad <mazin@getstate.dev> | 2024-11-14 20:06:12 +0300 |
|---|---|---|
| committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-11-20 18:01:32 +0800 |
| commit | 2b0eb7be455386de4c410d2fb7d5fbeb3bbd4cdd (patch) | |
| tree | e0001f4f1d43fd1f06fb37291ec5dcabdb8cbb74 | |
| parent | f0e428837697ff08d1ed4688da2dcd9649d683f7 (diff) | |
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
| -rw-r--r-- | gnu/packages/mpd.scm | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index c5632203dd8..47e4cced32c 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm | |||
| @@ -296,28 +296,32 @@ terminal using ncurses.") | |||
| 296 | (define-public ncmpcpp | 296 | (define-public ncmpcpp |
| 297 | (package | 297 | (package |
| 298 | (name "ncmpcpp") | 298 | (name "ncmpcpp") |
| 299 | (version "0.9.2") | 299 | (version "0.10.1") |
| 300 | (source (origin | 300 | (source (origin |
| 301 | (method url-fetch) | 301 | (method git-fetch) |
| 302 | (uri | 302 | (uri (git-reference |
| 303 | (string-append "https://ncmpcpp.rybczak.net/stable/ncmpcpp-" | 303 | (url "https://github.com/ncmpcpp/ncmpcpp") |
| 304 | version ".tar.bz2")) | 304 | (commit (string-append version)))) |
| 305 | (file-name (git-file-name name version)) | ||
| 305 | (sha256 | 306 | (sha256 |
| 306 | (base32 | 307 | (base32 |
| 307 | "06rs734n120jp51hr0fkkhxrm7zscbhpdwls0m5b5cccghazdazs")))) | 308 | "1chs7xpbsd1kmrdi4z41s0qcl7b661548jj6va1najgm5r5mwxy3")))) |
| 308 | (build-system gnu-build-system) | 309 | (build-system gnu-build-system) |
| 309 | (inputs (list libmpdclient | 310 | (inputs (list boost |
| 310 | boost | 311 | curl |
| 311 | readline | ||
| 312 | ncurses | ||
| 313 | taglib | ||
| 314 | icu4c | 312 | icu4c |
| 315 | curl)) | 313 | libmpdclient |
| 314 | ncurses | ||
| 315 | readline | ||
| 316 | taglib)) | ||
| 316 | (native-inputs | 317 | (native-inputs |
| 317 | (list pkg-config)) | 318 | (list autoconf-2.71 |
| 319 | automake | ||
| 320 | libtool | ||
| 321 | pkg-config)) | ||
| 318 | (arguments | 322 | (arguments |
| 319 | '(#:configure-flags | 323 | (list #:configure-flags |
| 320 | '("BOOST_LIB_SUFFIX=" "--with-taglib" "--enable-clock"))) | 324 | #~(list "BOOST_LIB_SUFFIX=" "--with-taglib" "--enable-clock"))) |
| 321 | (synopsis "Featureful ncurses based MPD client inspired by ncmpc") | 325 | (synopsis "Featureful ncurses based MPD client inspired by ncmpc") |
| 322 | (description "Ncmpcpp is an mpd client with a UI very similar to ncmpc, | 326 | (description "Ncmpcpp is an mpd client with a UI very similar to ncmpc, |
| 323 | but it provides new useful features such as support for regular expressions | 327 | but it provides new useful features such as support for regular expressions |
