deadbeef: add optional wildmidi support

This commit is contained in:
Nikolay Amiantov
2015-12-01 20:46:31 +03:00
parent 6da921e9dd
commit 123b73a182
@@ -9,6 +9,7 @@
, wavSupport ? true, libsndfile ? null , wavSupport ? true, libsndfile ? null
, cdaSupport ? true, libcdio ? null, libcddb ? null , cdaSupport ? true, libcdio ? null, libcddb ? null
, aacSupport ? true, faad2 ? null , aacSupport ? true, faad2 ? null
, midiSupport ? false, wildmidi ? null
, wavpackSupport ? false, wavpack ? null , wavpackSupport ? false, wavpack ? null
, ffmpegSupport ? false, ffmpeg ? null , ffmpegSupport ? false, ffmpeg ? null
# misc plugins # misc plugins
@@ -44,6 +45,7 @@ assert alsaSupport -> alsaLib != null;
assert pulseSupport -> libpulseaudio != null; assert pulseSupport -> libpulseaudio != null;
assert resamplerSupport -> libsamplerate != null; assert resamplerSupport -> libsamplerate != null;
assert overloadSupport -> zlib != null; assert overloadSupport -> zlib != null;
assert midiSupport -> wildmidi != null;
assert wavpackSupport -> wavpack != null; assert wavpackSupport -> wavpack != null;
assert remoteSupport -> curl != null; assert remoteSupport -> curl != null;
@@ -73,6 +75,7 @@ stdenv.mkDerivation rec {
++ optional pulseSupport libpulseaudio ++ optional pulseSupport libpulseaudio
++ optional resamplerSupport libsamplerate ++ optional resamplerSupport libsamplerate
++ optional overloadSupport zlib ++ optional overloadSupport zlib
++ optional midiSupport wildmidi
++ optional wavpackSupport wavpack ++ optional wavpackSupport wavpack
++ optional remoteSupport curl ++ optional remoteSupport curl
; ;