From 123b73a1827d0729d4ac08402552ed5c4d9d2eb2 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 1 Dec 2015 20:04:04 +0300 Subject: [PATCH] deadbeef: add optional wildmidi support --- pkgs/applications/audio/deadbeef/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/audio/deadbeef/default.nix b/pkgs/applications/audio/deadbeef/default.nix index d1828016de3..2663f5592f7 100644 --- a/pkgs/applications/audio/deadbeef/default.nix +++ b/pkgs/applications/audio/deadbeef/default.nix @@ -9,6 +9,7 @@ , wavSupport ? true, libsndfile ? null , cdaSupport ? true, libcdio ? null, libcddb ? null , aacSupport ? true, faad2 ? null +, midiSupport ? false, wildmidi ? null , wavpackSupport ? false, wavpack ? null , ffmpegSupport ? false, ffmpeg ? null # misc plugins @@ -44,6 +45,7 @@ assert alsaSupport -> alsaLib != null; assert pulseSupport -> libpulseaudio != null; assert resamplerSupport -> libsamplerate != null; assert overloadSupport -> zlib != null; +assert midiSupport -> wildmidi != null; assert wavpackSupport -> wavpack != null; assert remoteSupport -> curl != null; @@ -73,6 +75,7 @@ stdenv.mkDerivation rec { ++ optional pulseSupport libpulseaudio ++ optional resamplerSupport libsamplerate ++ optional overloadSupport zlib + ++ optional midiSupport wildmidi ++ optional wavpackSupport wavpack ++ optional remoteSupport curl ;