mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add mpd-mpc.
* gnu/packages/mpd.scm (mpd-mpc): New variable.
This commit is contained in:
parent
e42dc6249c
commit
773b2792e1
1 changed files with 23 additions and 0 deletions
|
@ -45,6 +45,7 @@ (define-module (gnu packages mpd)
|
|||
#:use-module (gnu packages xiph)
|
||||
#:export (libmpdclient
|
||||
mpd
|
||||
mpd-mpc
|
||||
ncmpc
|
||||
ncmpcpp))
|
||||
|
||||
|
@ -130,6 +131,28 @@ (define mpd
|
|||
(home-page "http://www.musicpd.org/")
|
||||
(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
|
||||
(package
|
||||
(name "ncmpc")
|
||||
|
|
Loading…
Reference in a new issue