gnu: Add mpd-mpc.
* gnu/packages/mpd.scm (mpd-mpc): New variable.
This commit is contained in:
parent
e42dc6249c
commit
773b2792e1
|
@ -45,6 +45,7 @@
|
||||||
#:use-module (gnu packages xiph)
|
#:use-module (gnu packages xiph)
|
||||||
#:export (libmpdclient
|
#:export (libmpdclient
|
||||||
mpd
|
mpd
|
||||||
|
mpd-mpc
|
||||||
ncmpc
|
ncmpc
|
||||||
ncmpcpp))
|
ncmpcpp))
|
||||||
|
|
||||||
|
@ -130,6 +131,28 @@ protocol.")
|
||||||
(home-page "http://www.musicpd.org/")
|
(home-page "http://www.musicpd.org/")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define mpd-mpc
|
||||||
|
(package
|
||||||
|
(name "mpd-mpc")
|
||||||
|
(version "0.26")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "http://www.musicpd.org/download/mpc/"
|
||||||
|
(car (string-split version #\.))
|
||||||
|
"/mpc-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0hp2qv6w2v902dhrmck5hg32s1ai6xiv9n61a3n6prfcfdqmywr0"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs `(("libmpdclient" ,libmpdclient)))
|
||||||
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
|
(synopsis "Music Player Daemon client")
|
||||||
|
(description "MPC is a minimalist command line interface to MPD, the music
|
||||||
|
player daemon.")
|
||||||
|
(home-page "http://www.musicpd.org/clients/mpc/")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
||||||
(define ncmpc
|
(define ncmpc
|
||||||
(package
|
(package
|
||||||
(name "ncmpc")
|
(name "ncmpc")
|
||||||
|
|
Loading…
Reference in New Issue