2014-10-19 17:34:03 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, systemd, boost
|
2013-01-18 11:01:14 +00:00
|
|
|
, alsaSupport ? true, alsaLib
|
|
|
|
, flacSupport ? true, flac
|
|
|
|
, vorbisSupport ? true, libvorbis
|
|
|
|
, madSupport ? true, libmad
|
|
|
|
, id3tagSupport ? true, libid3tag
|
|
|
|
, mikmodSupport ? true, libmikmod
|
2012-10-25 02:15:48 +01:00
|
|
|
, shoutSupport ? true, libshout
|
2013-01-18 11:01:14 +00:00
|
|
|
, sqliteSupport ? true, sqlite
|
|
|
|
, curlSupport ? true, curl
|
|
|
|
, audiofileSupport ? true, audiofile
|
|
|
|
, bzip2Support ? true, bzip2
|
|
|
|
, ffmpegSupport ? true, ffmpeg
|
|
|
|
, fluidsynthSupport ? true, fluidsynth
|
|
|
|
, zipSupport ? true, zziplib
|
|
|
|
, samplerateSupport ? true, libsamplerate
|
|
|
|
, mmsSupport ? true, libmms
|
|
|
|
, mpg123Support ? true, mpg123
|
2014-06-01 16:07:46 +01:00
|
|
|
, aacSupport ? true, faad2
|
|
|
|
, pulseaudioSupport ? true, pulseaudio
|
2015-01-01 19:45:23 +00:00
|
|
|
, jackSupport ? true, jack2
|
2014-12-22 06:49:34 +00:00
|
|
|
, gmeSupport ? true, game-music-emu
|
2014-10-19 17:34:03 +01:00
|
|
|
, icuSupport ? true, icu
|
2015-04-17 16:37:35 +01:00
|
|
|
, clientSupport ? false, mpd_clientlib
|
|
|
|
, opusSupport ? true, libopus
|
2014-06-01 16:07:46 +01:00
|
|
|
}:
|
2013-01-18 11:01:14 +00:00
|
|
|
|
2015-05-22 21:33:08 +01:00
|
|
|
with stdenv.lib;
|
2010-04-18 20:26:30 +01:00
|
|
|
let
|
2015-05-22 21:33:08 +01:00
|
|
|
opt = optional;
|
2014-10-19 17:34:03 +01:00
|
|
|
major = "0.19";
|
2015-02-09 11:49:12 +00:00
|
|
|
minor = "9";
|
2015-05-22 21:33:08 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-19 17:34:03 +01:00
|
|
|
name = "mpd-${major}.${minor}";
|
2010-04-18 20:26:30 +01:00
|
|
|
src = fetchurl {
|
2015-04-17 16:37:35 +01:00
|
|
|
url = "http://www.musicpd.org/download/mpd/${major}/${name}.tar.xz";
|
|
|
|
sha256 = "0vzj365s4j0pw5w37lfhx3dmpkdp85driravsvx8rlrw0lii91a7";
|
2010-04-18 20:26:30 +01:00
|
|
|
};
|
2012-10-25 02:15:48 +01:00
|
|
|
|
2014-10-19 17:34:03 +01:00
|
|
|
buildInputs = [ pkgconfig glib boost ]
|
2013-10-08 10:05:19 +01:00
|
|
|
++ opt stdenv.isLinux systemd
|
|
|
|
++ opt (stdenv.isLinux && alsaSupport) alsaLib
|
2010-04-18 20:26:30 +01:00
|
|
|
++ opt flacSupport flac
|
|
|
|
++ opt vorbisSupport libvorbis
|
2013-07-04 06:07:37 +01:00
|
|
|
# using libmad to decode mp3 files on darwin is causing a segfault -- there
|
|
|
|
# is probably a solution, but I'm disabling it for now
|
|
|
|
++ opt (!stdenv.isDarwin && madSupport) libmad
|
2010-04-18 20:26:30 +01:00
|
|
|
++ opt id3tagSupport libid3tag
|
|
|
|
++ opt mikmodSupport libmikmod
|
2013-01-18 11:01:14 +00:00
|
|
|
++ opt shoutSupport libshout
|
|
|
|
++ opt sqliteSupport sqlite
|
|
|
|
++ opt curlSupport curl
|
|
|
|
++ opt bzip2Support bzip2
|
|
|
|
++ opt audiofileSupport audiofile
|
|
|
|
++ opt ffmpegSupport ffmpeg
|
|
|
|
++ opt fluidsynthSupport fluidsynth
|
|
|
|
++ opt samplerateSupport libsamplerate
|
|
|
|
++ opt mmsSupport libmms
|
|
|
|
++ opt mpg123Support mpg123
|
|
|
|
++ opt aacSupport faad2
|
2014-06-01 16:07:46 +01:00
|
|
|
++ opt zipSupport zziplib
|
2014-10-19 17:34:03 +01:00
|
|
|
++ opt pulseaudioSupport pulseaudio
|
2015-01-01 19:45:23 +00:00
|
|
|
++ opt jackSupport jack2
|
2014-12-22 06:49:34 +00:00
|
|
|
++ opt gmeSupport game-music-emu
|
2015-04-17 16:37:35 +01:00
|
|
|
++ opt icuSupport icu
|
|
|
|
++ opt clientSupport mpd_clientlib
|
|
|
|
++ opt opusSupport libopus;
|
2013-01-18 11:01:14 +00:00
|
|
|
|
2013-07-04 06:07:37 +01:00
|
|
|
configureFlags =
|
2015-05-22 21:33:08 +01:00
|
|
|
[ (mkEnable (!stdenv.isDarwin && alsaSupport) "alsa" null)
|
|
|
|
(mkEnable flacSupport "flac" null)
|
|
|
|
(mkEnable vorbisSupport "vorbis" null)
|
|
|
|
(mkEnable vorbisSupport "vorbis-encoder" null)
|
|
|
|
(mkEnable (!stdenv.isDarwin && madSupport) "mad" null)
|
|
|
|
(mkEnable mikmodSupport "mikmod" null)
|
|
|
|
(mkEnable id3tagSupport "id3" null)
|
|
|
|
(mkEnable shoutSupport "shout" null)
|
|
|
|
(mkEnable sqliteSupport "sqlite" null)
|
|
|
|
(mkEnable curlSupport "curl" null)
|
|
|
|
(mkEnable audiofileSupport "audiofile" null)
|
|
|
|
(mkEnable bzip2Support "bzip2" null)
|
|
|
|
(mkEnable ffmpegSupport "ffmpeg" null)
|
|
|
|
(mkEnable fluidsynthSupport "fluidsynth" null)
|
|
|
|
(mkEnable zipSupport "zzip" null)
|
|
|
|
(mkEnable samplerateSupport "lsr" null)
|
|
|
|
(mkEnable mmsSupport "mms" null)
|
|
|
|
(mkEnable mpg123Support "mpg123" null)
|
|
|
|
(mkEnable aacSupport "aac" null)
|
|
|
|
(mkEnable pulseaudioSupport "pulse" null)
|
|
|
|
(mkEnable jackSupport "jack" null)
|
|
|
|
(mkEnable stdenv.isDarwin "osx" null)
|
|
|
|
(mkEnable icuSupport "icu" null)
|
|
|
|
(mkEnable gmeSupport "gme" null)
|
|
|
|
(mkEnable clientSupport "libmpdclient" null)
|
|
|
|
(mkEnable opusSupport "opus" null)
|
|
|
|
(mkEnable true "debug" null)
|
2014-06-16 21:03:37 +01:00
|
|
|
]
|
2013-10-08 10:05:19 +01:00
|
|
|
++ opt stdenv.isLinux
|
2013-07-04 06:07:37 +01:00
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system";
|
2012-10-25 02:15:48 +01:00
|
|
|
|
|
|
|
NIX_LDFLAGS = ''
|
|
|
|
${if shoutSupport then "-lshout" else ""}
|
|
|
|
'';
|
|
|
|
|
2015-05-22 21:33:08 +01:00
|
|
|
meta = {
|
2010-04-18 20:26:30 +01:00
|
|
|
description = "A flexible, powerful daemon for playing music";
|
2013-07-04 06:07:37 +01:00
|
|
|
homepage = http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki;
|
|
|
|
license = licenses.gpl2;
|
2015-04-17 16:37:35 +01:00
|
|
|
maintainers = with maintainers; [ astsmtl fuuzetsu emery ];
|
2013-07-04 06:07:37 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
|
2010-04-18 20:26:30 +01:00
|
|
|
longDescription = ''
|
|
|
|
Music Player Daemon (MPD) is a flexible, powerful daemon for playing
|
|
|
|
music. Through plugins and libraries it can play a variety of sound
|
|
|
|
files while being controlled by its network protocol.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|