gnu: groff: Disable relocatability.
[jackhill/guix/guix.git] / gnu / packages / mpd.scm
CommitLineData
892d8a81 1;;; GNU Guix --- Functional package management for GNU
927ff2c3 2;;; Copyright © 2014, 2015 David Thompson <dthompson2@worcester.edu>
b0193286 3;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
009c5b5c 4;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
29a7c98a 5;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
e42dc624 6;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
c59ea46f 7;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
7da9e792 8;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
892d8a81
DT
9;;;
10;;; This file is part of GNU Guix.
11;;;
12;;; GNU Guix is free software; you can redistribute it and/or modify it
13;;; under the terms of the GNU General Public License as published by
14;;; the Free Software Foundation; either version 3 of the License, or (at
15;;; your option) any later version.
16;;;
17;;; GNU Guix is distributed in the hope that it will be useful, but
18;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
25(define-module (gnu packages mpd)
26 #:use-module (gnu packages)
7dc68701 27 #:use-module ((guix licenses) #:prefix license:)
892d8a81
DT
28 #:use-module (guix packages)
29 #:use-module (guix download)
29a7c98a 30 #:use-module (guix utils)
892d8a81 31 #:use-module (guix build-system gnu)
7da9e792 32 #:use-module (guix build-system meson)
efe0b143 33 #:use-module (guix build-system python)
7dc68701 34 #:use-module (gnu packages avahi)
e42dc624 35 #:use-module (gnu packages boost)
7c0ed27a 36 #:use-module (gnu packages gcc)
6c86cef5
CB
37 #:use-module (gnu packages gettext)
38 #:use-module (gnu packages gnome)
39 #:use-module (gnu packages gtk)
58acabc3 40 #:use-module (gnu packages icu4c)
e42dc624 41 #:use-module (gnu packages readline)
ac257f12 42 #:use-module (gnu packages check)
7dc68701
DT
43 #:use-module (gnu packages compression)
44 #:use-module (gnu packages curl)
99828fa7 45 #:use-module (gnu packages documentation)
7dc68701
DT
46 #:use-module (gnu packages glib)
47 #:use-module (gnu packages linux)
48 #:use-module (gnu packages mp3)
4d01bd3c 49 #:use-module (gnu packages ncurses)
cd220e60 50 #:use-module (gnu packages pcre)
7dc68701 51 #:use-module (gnu packages pkg-config)
efe0b143 52 #:use-module (gnu packages python)
44d10b1f 53 #:use-module (gnu packages python-xyz)
7dc68701 54 #:use-module (gnu packages pulseaudio)
5f96f303 55 #:use-module (gnu packages databases)
7dc68701 56 #:use-module (gnu packages video)
654b27e5 57 #:use-module (gnu packages xiph))
892d8a81 58
654b27e5 59(define-public libmpdclient
892d8a81
DT
60 (package
61 (name "libmpdclient")
69c69c2d 62 (version "2.16")
892d8a81
DT
63 (source (origin
64 (method url-fetch)
65 (uri
c59ea46f 66 (string-append "https://musicpd.org/download/libmpdclient/"
892d8a81 67 (car (string-split version #\.))
a53a925f 68 "/libmpdclient-" version ".tar.xz"))
892d8a81
DT
69 (sha256
70 (base32
69c69c2d 71 "0r24cl3i9nvs6a47mvwaxk1kb5wmnhkhrw1q5cq9010fgjvdlszs"))))
7da9e792
TGR
72 (build-system meson-build-system)
73 (native-inputs
74 `(("pkg-config" ,pkg-config)
75
76 ;; For building HTML documentation.
77 ("doxygen" ,doxygen)
78
79 ;; For tests.
80 ("check" ,check)))
81 (arguments
82 `(#:configure-flags
83 (list "-Ddocumentation=true"
84 "-Dtest=true")))
892d8a81
DT
85 (synopsis "Music Player Daemon client library")
86 (description "A stable, documented, asynchronous API library for
87interfacing MPD in the C, C++ & Objective C languages.")
e9aa6b5e 88 (home-page "https://www.musicpd.org/libs/libmpdclient/")
7dc68701
DT
89 (license license:bsd-3)))
90
654b27e5 91(define-public mpd
7dc68701
DT
92 (package
93 (name "mpd")
7571ec35 94 (version "0.20.23")
7dc68701
DT
95 (source (origin
96 (method url-fetch)
97 (uri
943100f6 98 (string-append "https://musicpd.org/download/mpd/"
29a7c98a 99 (version-major+minor version)
58acabc3 100 "/mpd-" version ".tar.xz"))
7dc68701
DT
101 (sha256
102 (base32
7571ec35 103 "1smg6hab4kwrzsw1k7vlpya3ampdk8psnmkrzxlgb43j4fgmygjh"))))
7dc68701 104 (build-system gnu-build-system)
87b52095
LF
105 (arguments
106 `(#:phases
107 (modify-phases %standard-phases
108 (add-after 'install 'install-service-files
109 (lambda* (#:key outputs #:allow-other-keys)
110 (let* ((out (assoc-ref outputs "out"))
111 (systemd (string-append out "/etc/systemd/system"))
112 (systemd-user (string-append out "/etc/systemd/user")))
113 (install-file "systemd/system/mpd.service" systemd)
114 (install-file "systemd/user/mpd.service" systemd-user)
115 #t))))))
7dc68701
DT
116 (inputs `(("ao" ,ao)
117 ("alsa-lib" ,alsa-lib)
118 ("avahi" ,avahi)
58acabc3 119 ("boost" ,boost)
7dc68701
DT
120 ("curl" ,curl)
121 ("ffmpeg" ,ffmpeg)
122 ("flac" ,flac)
123 ("glib" ,glib)
58acabc3 124 ("icu4c" ,icu4c)
241caa62
LF
125 ;; The LAME decoder comes from FFmpeg, but is added here so that
126 ;; configure picks up the LAME encoder.
7dc68701
DT
127 ("lame" ,lame)
128 ("libid3tag" ,libid3tag)
7dc68701
DT
129 ("libmpdclient" ,libmpdclient)
130 ("libsamplerate" ,libsamplerate)
131 ("libsndfile" ,libsndfile)
132 ("libvorbis" ,libvorbis)
133 ("opus" ,opus)
7dc68701
DT
134 ("pulseaudio" ,pulseaudio)
135 ("sqlite" ,sqlite)
136 ("zlib" ,zlib)))
7641266b 137 (native-inputs `(("pkg-config" ,pkg-config)))
7dc68701
DT
138 ;; Missing optional inputs:
139 ;; libyajl
140 ;; libcdio_paranoia
141 ;; libmms
142 ;; libadplug
143 ;; libaudiofile
144 ;; faad2
145 ;; fluidsynth
146 ;; libgme
147 ;; libshout
148 ;; libmpg123
149 ;; libmodplug
150 ;; libmpcdec
151 ;; libsidplay2
152 ;; libwavpack
153 ;; libwildmidi
154 ;; libtwolame
155 ;; libroar
156 ;; libjack
157 ;; OpenAL
158 (synopsis "Music Player Daemon")
159 (description "Music Player Daemon (MPD) is a flexible, powerful,
160server-side application for playing music. Through plugins and libraries it
161can play a variety of sound files while being controlled by its network
162protocol.")
e9aa6b5e 163 (home-page "https://www.musicpd.org/")
7dc68701 164 (license license:gpl2)))
4d01bd3c 165
654b27e5 166(define-public mpd-mpc
773b2792
PW
167 (package
168 (name "mpd-mpc")
33279c2a 169 (version "0.31")
773b2792
PW
170 (source (origin
171 (method url-fetch)
172 (uri
62d14d24 173 (string-append "https://www.musicpd.org/download/mpc/"
773b2792
PW
174 (car (string-split version #\.))
175 "/mpc-" version ".tar.xz"))
176 (sha256
177 (base32
33279c2a 178 "0b9bsn4sl26xc6wdcms51x9yxznkxkppaycn8gnv4rd1m21kwdv2"))))
62d14d24 179 (build-system meson-build-system)
773b2792 180 (inputs `(("libmpdclient" ,libmpdclient)))
33279c2a
LF
181 (native-inputs
182 `(("pkg-config" ,pkg-config)
183 ("python-sphinx" ,python-sphinx)))
773b2792
PW
184 (synopsis "Music Player Daemon client")
185 (description "MPC is a minimalist command line interface to MPD, the music
186player daemon.")
e9aa6b5e 187 (home-page "https://www.musicpd.org/clients/mpc/")
773b2792
PW
188 (license license:gpl2)))
189
654b27e5 190(define-public ncmpc
4d01bd3c
DT
191 (package
192 (name "ncmpc")
947babea 193 (version "0.33")
4d01bd3c
DT
194 (source (origin
195 (method url-fetch)
196 (uri
197 (string-append "http://musicpd.org/download/ncmpc/"
947babea 198 (version-major version)
3efee6a4 199 "/ncmpc-" version ".tar.xz"))
4d01bd3c
DT
200 (sha256
201 (base32
947babea 202 "19fp7xkpai4lq3vmpbppgh3ism7lg2sibv237c0sl5a0hls4mq4l"))))
fbde7b08
TGR
203 (build-system meson-build-system)
204 (arguments
205 `(#:configure-flags
cd220e60
LF
206 ;; Otherwise, they are installed incorrectly, in
207 ;; '$out/share/man/man/man1'.
208 (list (string-append "-Dmandir=" (assoc-ref %outputs "out")
209 "/share"))
7c0ed27a
TGR
210 #:phases
211 (modify-phases %standard-phases
212 (add-before 'configure 'expand-C++-include-path
213 ;; Make <gcc>/include/c++/ext/string_conversions.h find <stdlib.h>.
214 (lambda* (#:key inputs #:allow-other-keys)
215 (let* ((path "CPLUS_INCLUDE_PATH")
216 (gcc (assoc-ref inputs "gcc"))
217 (c++ (string-append gcc "/include/c++")))
218 (setenv path (string-append c++ ":" (getenv path)))
219 #t))))))
b42b5afd 220 (inputs `(("gcc" ,gcc-8) ; for its C++14 support
cd220e60
LF
221 ("boost" ,boost)
222 ("pcre" ,pcre)
4d01bd3c
DT
223 ("libmpdclient" ,libmpdclient)
224 ("ncurses" ,ncurses)))
fbde7b08 225 (native-inputs `(("gettext" ,gettext-minimal) ; for xgettext
cd220e60
LF
226 ("pkg-config" ,pkg-config)
227 ("python-sphinx" ,python-sphinx)))
9e771e3b 228 (synopsis "Curses Music Player Daemon client")
4d01bd3c
DT
229 (description "ncmpc is a fully featured MPD client, which runs in a
230terminal using ncurses.")
e9aa6b5e 231 (home-page "https://www.musicpd.org/clients/ncmpc/")
4d01bd3c 232 (license license:gpl2)))
009c5b5c 233
654b27e5 234(define-public ncmpcpp
009c5b5c
CS
235 (package
236 (name "ncmpcpp")
93cbcc26 237 (version "0.8.2")
009c5b5c
CS
238 (source (origin
239 (method url-fetch)
240 (uri
a708fea4 241 (string-append "https://ncmpcpp.rybczak.net/stable/ncmpcpp-"
009c5b5c
CS
242 version ".tar.bz2"))
243 (sha256
244 (base32
93cbcc26 245 "0m0mjb049sl62vx13h9waavysa30mk0rphacksnvf94n13la62v5"))))
009c5b5c
CS
246 (build-system gnu-build-system)
247 (inputs `(("libmpdclient" ,libmpdclient)
b9103c82 248 ("boost" ,boost-cxx14)
e42dc624 249 ("readline" ,readline)
a22722c1 250 ("ncurses" ,ncurses)
a4c7c57c 251 ("taglib" ,taglib)
a708fea4
LF
252 ("icu4c" ,icu4c)
253 ("curl" ,curl)))
e42dc624 254 (native-inputs
c7794307 255 `(("pkg-config" ,pkg-config)))
e42dc624
PW
256 (arguments
257 '(#:configure-flags
c7794307 258 '("BOOST_LIB_SUFFIX=" "--with-taglib")))
009c5b5c
CS
259 (synopsis "Featureful ncurses based MPD client inspired by ncmpc")
260 (description "Ncmpcpp is an mpd client with a UI very similar to ncmpc,
261but it provides new useful features such as support for regular expressions
262for library searches, extended song format, items filtering, the ability to
8f65585b 263sort playlists, and a local file system browser.")
a708fea4 264 (home-page "https://ncmpcpp.rybczak.net/")
009c5b5c 265 (license license:gpl2+)))
927ff2c3
DT
266
267(define-public mpdscribble
268 (package
269 (name "mpdscribble")
270 (version "0.22")
271 (source (origin
272 (method url-fetch)
273 (uri (string-append "http://www.musicpd.org/download/mpdscribble/"
274 version "/mpdscribble-" version ".tar.gz"))
275 (sha256
276 (base32
277 "0f0ybx380x2z2g1qvdndpvcrhkrgsfqckhz3ryydq2w3pl12v27z"))))
278 (build-system gnu-build-system)
279 (inputs `(("libmpdclient" ,libmpdclient)
280 ("curl" ,curl)
281 ("glib" ,glib)))
282 (native-inputs `(("pkg-config" ,pkg-config)))
283 (synopsis "MPD client for track scrobbling")
284 (description "mpdscribble is a Music Player Daemon client which submits
285information about tracks being played to a scrobbler, such as Libre.FM.")
fc2847b1 286 (home-page "https://www.musicpd.org/clients/mpdscribble/")
927ff2c3 287 (license license:gpl2+)))
efe0b143
LF
288
289(define-public python-mpd2
290 (package
291 (name "python-mpd2")
292 (version "0.5.5")
293 (source (origin
294 (method url-fetch)
295 (uri (pypi-uri "python-mpd2" version))
296 (sha256
297 (base32
298 "0laypd7h1j14b4vrmiayqlzdsh2j5hc3zv4l0fqvbrbw9y6763ii"))))
299 (build-system python-build-system)
300 (arguments
301 '(#:phases
302 (modify-phases %standard-phases
303 (replace 'check
e8e3c357 304 (lambda _ (invoke "python" "mpd_test.py"))))))
efe0b143
LF
305 (native-inputs `(("python-mock" ,python-mock)))
306 (home-page "https://github.com/Mic92/python-mpd2")
307 (synopsis "Python MPD client library")
308 (description "Python-mpd2 is a Python library which provides a client
309interface for the Music Player Daemon.")
5c31f4aa 310 (license license:lgpl3+)))
efe0b143
LF
311
312(define-public python2-mpd2
5c31f4aa 313 (package-with-python2 python-mpd2))
6c86cef5
CB
314
315(define-public sonata
316 (package
317 (name "sonata")
318 (version "1.7b1")
319 (source (origin
320 (method url-fetch)
321 (uri
322 (string-append "https://github.com/multani/sonata/archive/v"
323 version ".tar.gz"))
324 (file-name (string-append name "-" version ".tar.gz"))
325 (sha256
326 (base32
327 "07gq2nxqwxs0qyxjbay7k5j25zd386bn7wdr2dl1gk53diwnn7s0"))))
328 (build-system python-build-system)
329 (arguments
330 `(#:modules ((guix build gnu-build-system)
331 (guix build python-build-system)
332 ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
333 (guix build utils))
334 #:imported-modules (,@%gnu-build-system-modules
335 (guix build python-build-system)
336 (guix build glib-or-gtk-build-system))
337 #:phases
338 (modify-phases %standard-phases
339 (add-after 'install 'glib-or-gtk-wrap
340 (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
341 (add-after 'install 'wrap-sonata
342 (lambda* (#:key outputs #:allow-other-keys)
343 (let ((out (assoc-ref outputs "out"))
344 (gi-typelib-path (getenv "GI_TYPELIB_PATH")))
345 (wrap-program (string-append out "/bin/sonata")
346 `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
347 #t)))))
348 (native-inputs
7c90d0f4 349 `(("gettext" ,gettext-minimal)))
6c86cef5
CB
350 (inputs
351 `(("python-mpd2" ,python-mpd2)
352 ("gtk+" ,gtk+)
353 ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
354 ("gobject-introspection" ,gobject-introspection)
355 ("adwaita-icon-theme" ,adwaita-icon-theme)
356 ("python-pygobject" ,python-pygobject)))
357 (synopsis "Elegant client for the Music Player Daemon")
358 (description "Sonata is an elegant graphical client for the Music Player
359Daemon (MPD). It supports playlists, multiple profiles (connecting to different
360MPD servers, search and multimedia key support.")
340978d7 361 (home-page "https://www.nongnu.org/sonata/")
6c86cef5 362 (license license:gpl3+)))