gnu: ncmpcpp: Update to 0.8.
* gnu/packages/mpd.scm (ncmpcpp): Update to 0.8. [inputs]: Add curl. [source], [home-page]: Use HTTPS URLs.
This commit is contained in:
parent
c8eb2b8c60
commit
a708fea406
|
@ -195,22 +195,23 @@ terminal using ncurses.")
|
||||||
(define-public ncmpcpp
|
(define-public ncmpcpp
|
||||||
(package
|
(package
|
||||||
(name "ncmpcpp")
|
(name "ncmpcpp")
|
||||||
(version "0.7.7")
|
(version "0.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append "http://ncmpcpp.rybczak.net/stable/ncmpcpp-"
|
(string-append "https://ncmpcpp.rybczak.net/stable/ncmpcpp-"
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1vq19m36608pvw1g8nbcaqqb89wsw05v35pi45xwr20z7g4bxg5p"))))
|
"0nj6ky805a55acj0w57sbn3vfmmkbqp97rhbi0q9848n10f2l3rg"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("libmpdclient" ,libmpdclient)
|
(inputs `(("libmpdclient" ,libmpdclient)
|
||||||
("boost" ,boost)
|
("boost" ,boost)
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
("ncurses" ,ncurses)
|
("ncurses" ,ncurses)
|
||||||
("taglib" ,taglib)
|
("taglib" ,taglib)
|
||||||
("icu4c" ,icu4c)))
|
("icu4c" ,icu4c)
|
||||||
|
("curl" ,curl)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -221,7 +222,7 @@ terminal using ncurses.")
|
||||||
but it provides new useful features such as support for regular expressions
|
but it provides new useful features such as support for regular expressions
|
||||||
for library searches, extended song format, items filtering, the ability to
|
for library searches, extended song format, items filtering, the ability to
|
||||||
sort playlists, and a local file system browser.")
|
sort playlists, and a local file system browser.")
|
||||||
(home-page "http://ncmpcpp.rybczak.net/")
|
(home-page "https://ncmpcpp.rybczak.net/")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public mpdscribble
|
(define-public mpdscribble
|
||||||
|
|
Loading…
Reference in New Issue