2014-02-24 00:25:17 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-02-28 20:24:52 +01:00
|
|
|
;;; Copyright © 2014, 2015 David Thompson <dthompson2@worcester.edu>
|
2014-04-25 00:16:30 +02:00
|
|
|
;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
|
2014-06-29 10:23:28 +02:00
|
|
|
;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
|
2014-10-19 04:03:42 +02:00
|
|
|
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
|
2015-02-28 14:49:09 +01:00
|
|
|
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
2016-02-21 09:30:30 +01:00
|
|
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
2014-02-24 00:25:17 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages mpd)
|
|
|
|
#:use-module (gnu packages)
|
2014-02-25 01:03:29 +01:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2014-02-24 00:25:17 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2014-10-19 04:03:42 +02:00
|
|
|
#:use-module (guix utils)
|
2014-02-24 00:25:17 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
2016-03-04 02:06:19 +01:00
|
|
|
#:use-module (guix build-system python)
|
2014-02-25 01:03:29 +01:00
|
|
|
#:use-module (gnu packages avahi)
|
2015-02-28 14:49:09 +01:00
|
|
|
#:use-module (gnu packages boost)
|
2015-03-02 22:52:49 +01:00
|
|
|
#:use-module (gnu packages icu4c)
|
2015-02-28 14:49:09 +01:00
|
|
|
#:use-module (gnu packages readline)
|
2014-02-25 01:03:29 +01:00
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages curl)
|
gnu: Update module imports for asciidoc and doxygen.
This is a followup to commit 0573a923def01e54bf104e0015ade44ab42f694f.
* gnu/packages/algebra.scm, gnu/packages/bioinformatics.scm,
gnu/packages/fcitx.scm, gnu/packages/fish.scm,
gnu/packages/freedesktop.scm, gnu/packages/game-development.scm,
gnu/packages/gcc.scm, gnu/packages/graphics.scm, gnu/packages/image.scm,
gnu/packages/kodi.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/messaging.scm,
gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/rdf.scm,
gnu/packages/serialization.scm, gnu/packages/version-control.scm,
gnu/packages/web.scm, gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xiph.scm: Change imports of (gnu packages asciidoc) or
(gnu packages doxygen) to (gnu packages documentation).
2016-05-13 02:18:15 +02:00
|
|
|
#:use-module (gnu packages documentation)
|
2014-02-25 01:03:29 +01:00
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages mp3)
|
2014-03-06 02:45:55 +01:00
|
|
|
#:use-module (gnu packages ncurses)
|
2014-02-25 01:03:29 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2016-03-04 02:06:19 +01:00
|
|
|
#:use-module (gnu packages python)
|
2014-02-25 01:03:29 +01:00
|
|
|
#:use-module (gnu packages pulseaudio)
|
gnu: Consolidate databases in (gnu packages databases).
* gnu/packages/databases.scm: New file, with the contents of the
following deleted files.
* gnu/packages/mysql.scm, gnu/packages/postgresql.scm,
gnu/packages/recutils.scm, gnu/packages/sqlite.scm,
gnu/packages/bdb.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/apl.scm, gnu/packages/dc.scm, gnu/packages/games.scm,
gnu/packages/gnunet.scm, gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/mpd.scm, gnu/packages/nvi.scm, gnu/packages/openldap.scm,
gnu/packages/package-management.scm, gnu/packages/python.scm,
gnu/packages/qt.scm, gnu/packages/rdf.scm,
gnu/packages/version-control.scm: Adjust to new module name.
2014-09-08 17:48:03 +02:00
|
|
|
#:use-module (gnu packages databases)
|
2014-02-25 01:03:29 +01:00
|
|
|
#:use-module (gnu packages video)
|
2015-02-28 20:05:20 +01:00
|
|
|
#:use-module (gnu packages xiph))
|
2014-02-24 00:25:17 +01:00
|
|
|
|
2015-02-28 20:05:20 +01:00
|
|
|
(define-public libmpdclient
|
2014-02-24 00:25:17 +01:00
|
|
|
(package
|
|
|
|
(name "libmpdclient")
|
2015-07-09 12:56:52 +02:00
|
|
|
(version "2.10")
|
2014-02-24 00:25:17 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "http://musicpd.org/download/libmpdclient/"
|
|
|
|
(car (string-split version #\.))
|
2015-07-09 12:56:52 +02:00
|
|
|
"/libmpdclient-" version ".tar.xz"))
|
2014-02-24 00:25:17 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2015-07-09 12:56:52 +02:00
|
|
|
"10pzs9z815a8hgbbbiliapyiw82bnplsccj5irgqjw5f5plcs22g"))))
|
2014-02-24 00:25:17 +01:00
|
|
|
(build-system gnu-build-system)
|
2014-04-25 00:16:30 +02:00
|
|
|
(native-inputs `(("doxygen" ,doxygen)))
|
2014-02-24 00:25:17 +01:00
|
|
|
(synopsis "Music Player Daemon client library")
|
|
|
|
(description "A stable, documented, asynchronous API library for
|
|
|
|
interfacing MPD in the C, C++ & Objective C languages.")
|
|
|
|
(home-page "http://www.musicpd.org/libs/libmpdclient/")
|
2014-02-25 01:03:29 +01:00
|
|
|
(license license:bsd-3)))
|
|
|
|
|
2015-02-28 20:05:20 +01:00
|
|
|
(define-public mpd
|
2014-02-25 01:03:29 +01:00
|
|
|
(package
|
|
|
|
(name "mpd")
|
2016-08-09 21:22:18 +02:00
|
|
|
(version "0.19.18")
|
2014-02-25 01:03:29 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "http://musicpd.org/download/mpd/"
|
2014-10-19 04:03:42 +02:00
|
|
|
(version-major+minor version)
|
2015-03-02 22:52:49 +01:00
|
|
|
"/mpd-" version ".tar.xz"))
|
2014-02-25 01:03:29 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-08-09 21:22:18 +02:00
|
|
|
"0izd0ph570055s1np6dynxhwbh0h6kb6agvfhxzbj34qahf9jk3n"))))
|
2014-02-25 01:03:29 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("ao" ,ao)
|
|
|
|
("alsa-lib" ,alsa-lib)
|
|
|
|
("avahi" ,avahi)
|
2015-03-02 22:52:49 +01:00
|
|
|
("boost" ,boost)
|
2014-02-25 01:03:29 +01:00
|
|
|
("curl" ,curl)
|
|
|
|
("ffmpeg" ,ffmpeg)
|
|
|
|
("flac" ,flac)
|
|
|
|
("glib" ,glib)
|
2015-03-02 22:52:49 +01:00
|
|
|
("icu4c" ,icu4c)
|
2014-02-25 01:03:29 +01:00
|
|
|
("lame" ,lame)
|
|
|
|
("libid3tag" ,libid3tag)
|
|
|
|
("libmad" ,libmad)
|
|
|
|
("libmpdclient" ,libmpdclient)
|
|
|
|
("libsamplerate" ,libsamplerate)
|
|
|
|
("libsndfile" ,libsndfile)
|
|
|
|
("libvorbis" ,libvorbis)
|
|
|
|
("opus" ,opus)
|
|
|
|
("pulseaudio" ,pulseaudio)
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
("zlib" ,zlib)))
|
2014-11-07 13:49:37 +01:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
2014-02-25 01:03:29 +01:00
|
|
|
;; Missing optional inputs:
|
|
|
|
;; libyajl
|
|
|
|
;; libcdio_paranoia
|
|
|
|
;; libmms
|
|
|
|
;; libadplug
|
|
|
|
;; libaudiofile
|
|
|
|
;; faad2
|
|
|
|
;; fluidsynth
|
|
|
|
;; libgme
|
|
|
|
;; libshout
|
|
|
|
;; libmpg123
|
|
|
|
;; libmodplug
|
|
|
|
;; libmpcdec
|
|
|
|
;; libsidplay2
|
|
|
|
;; libwavpack
|
|
|
|
;; libwildmidi
|
|
|
|
;; libtwolame
|
|
|
|
;; libroar
|
|
|
|
;; libjack
|
|
|
|
;; OpenAL
|
|
|
|
(synopsis "Music Player Daemon")
|
|
|
|
(description "Music Player Daemon (MPD) is a flexible, powerful,
|
|
|
|
server-side application for playing music. Through plugins and libraries it
|
|
|
|
can play a variety of sound files while being controlled by its network
|
|
|
|
protocol.")
|
|
|
|
(home-page "http://www.musicpd.org/")
|
|
|
|
(license license:gpl2)))
|
2014-03-06 02:45:55 +01:00
|
|
|
|
2015-02-28 20:05:20 +01:00
|
|
|
(define-public mpd-mpc
|
2015-02-28 18:22:03 +01:00
|
|
|
(package
|
|
|
|
(name "mpd-mpc")
|
2015-07-09 12:59:47 +02:00
|
|
|
(version "0.27")
|
2015-02-28 18:22:03 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "http://www.musicpd.org/download/mpc/"
|
|
|
|
(car (string-split version #\.))
|
|
|
|
"/mpc-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-07-09 12:59:47 +02:00
|
|
|
"0r10wsqxsi07gns6mfnicvpci0sbwwj4qa9iyr1ysrgadl5bx8j5"))))
|
2015-02-28 18:22:03 +01:00
|
|
|
(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)))
|
|
|
|
|
2015-02-28 20:05:20 +01:00
|
|
|
(define-public ncmpc
|
2014-03-06 02:45:55 +01:00
|
|
|
(package
|
|
|
|
(name "ncmpc")
|
2015-07-09 13:06:14 +02:00
|
|
|
(version "0.24")
|
2014-03-06 02:45:55 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "http://musicpd.org/download/ncmpc/"
|
|
|
|
(car (string-split version #\.))
|
2015-07-09 13:06:14 +02:00
|
|
|
"/ncmpc-" version ".tar.xz"))
|
2014-03-06 02:45:55 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2015-07-09 13:06:14 +02:00
|
|
|
"1sf3nirs3mcx0r5i7acm9bsvzqzlh730m0yjg6jcyj8ln6r7cvqf"))))
|
2014-03-06 02:45:55 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("glib" ,glib)
|
|
|
|
("libmpdclient" ,libmpdclient)
|
|
|
|
("ncurses" ,ncurses)))
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
2014-09-13 15:50:30 +02:00
|
|
|
(synopsis "Curses Music Player Daemon client")
|
2014-03-06 02:45:55 +01:00
|
|
|
(description "ncmpc is a fully featured MPD client, which runs in a
|
|
|
|
terminal using ncurses.")
|
|
|
|
(home-page "http://www.musicpd.org/clients/ncmpc/")
|
|
|
|
(license license:gpl2)))
|
2014-06-29 10:23:28 +02:00
|
|
|
|
2015-02-28 20:05:20 +01:00
|
|
|
(define-public ncmpcpp
|
2014-06-29 10:23:28 +02:00
|
|
|
(package
|
|
|
|
(name "ncmpcpp")
|
2016-04-25 01:04:00 +02:00
|
|
|
(version "0.7.4")
|
2014-06-29 10:23:28 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "http://ncmpcpp.rybczak.net/stable/ncmpcpp-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-04-25 01:04:00 +02:00
|
|
|
"0qqy3w2vw3i9rxz0z8n0plmwwfv6gzrxip86l894l1xbvzqja16p"))))
|
2014-06-29 10:23:28 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("libmpdclient" ,libmpdclient)
|
2015-02-28 14:49:09 +01:00
|
|
|
("boost" ,boost)
|
|
|
|
("readline" ,readline)
|
2015-03-09 11:01:08 +01:00
|
|
|
("ncurses" ,ncurses)
|
2016-02-21 09:31:25 +01:00
|
|
|
("taglib" ,taglib)
|
|
|
|
("icu4c" ,icu4c)))
|
2015-02-28 14:49:09 +01:00
|
|
|
(native-inputs
|
2016-04-26 23:07:32 +02:00
|
|
|
`(("pkg-config" ,pkg-config)))
|
2015-02-28 14:49:09 +01:00
|
|
|
(arguments
|
|
|
|
'(#:configure-flags
|
2016-04-26 23:07:32 +02:00
|
|
|
'("BOOST_LIB_SUFFIX=" "--with-taglib")))
|
2014-06-29 10:23:28 +02:00
|
|
|
(synopsis "Featureful ncurses based MPD client inspired by ncmpc")
|
|
|
|
(description "Ncmpcpp is an mpd client with a UI very similar to ncmpc,
|
|
|
|
but it provides new useful features such as support for regular expressions
|
|
|
|
for library searches, extended song format, items filtering, the ability to
|
|
|
|
sort playlists, and a local filesystem browser.")
|
|
|
|
(home-page "http://ncmpcpp.rybczak.net/")
|
|
|
|
(license license:gpl2+)))
|
2015-02-28 20:24:52 +01:00
|
|
|
|
|
|
|
(define-public mpdscribble
|
|
|
|
(package
|
|
|
|
(name "mpdscribble")
|
|
|
|
(version "0.22")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.musicpd.org/download/mpdscribble/"
|
|
|
|
version "/mpdscribble-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0f0ybx380x2z2g1qvdndpvcrhkrgsfqckhz3ryydq2w3pl12v27z"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("libmpdclient" ,libmpdclient)
|
|
|
|
("curl" ,curl)
|
|
|
|
("glib" ,glib)))
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(synopsis "MPD client for track scrobbling")
|
|
|
|
(description "mpdscribble is a Music Player Daemon client which submits
|
|
|
|
information about tracks being played to a scrobbler, such as Libre.FM.")
|
|
|
|
;; musicpd.org doesn't mention mpdscribble. It points users to this wiki
|
|
|
|
;; instead.
|
|
|
|
(home-page "http://mpd.wikia.com/wiki/Client:Mpdscribble")
|
|
|
|
(license license:gpl2+)))
|
2016-03-04 02:06:19 +01:00
|
|
|
|
|
|
|
(define-public python-mpd2
|
|
|
|
(package
|
|
|
|
(name "python-mpd2")
|
|
|
|
(version "0.5.5")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "python-mpd2" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0laypd7h1j14b4vrmiayqlzdsh2j5hc3zv4l0fqvbrbw9y6763ii"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda _ (zero? (system* "python" "mpd_test.py")))))))
|
|
|
|
(native-inputs `(("python-mock" ,python-mock)))
|
|
|
|
(home-page "https://github.com/Mic92/python-mpd2")
|
|
|
|
(synopsis "Python MPD client library")
|
|
|
|
(description "Python-mpd2 is a Python library which provides a client
|
|
|
|
interface for the Music Player Daemon.")
|
|
|
|
(license license:lgpl3+)
|
|
|
|
(properties `((python2-variant . ,(delay python2-mpd2))))))
|
|
|
|
|
|
|
|
(define-public python2-mpd2
|
|
|
|
(let ((mpd2 (package-with-python2
|
|
|
|
(strip-python2-variant python-mpd2))))
|
|
|
|
(package (inherit mpd2)
|
|
|
|
(native-inputs `(("python2-setuptools" ,python2-setuptools)
|
|
|
|
,@(package-native-inputs mpd2))))))
|