From f650fed9e543f794de68579093c1ef8283ba91a8 Mon Sep 17 00:00:00 2001 From: Artjom Vejsel Date: Sun, 31 Jan 2016 12:12:16 +0300 Subject: [PATCH] deadbeef: ape plugin fix --- 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 2663f5592f78..1a2b4b7cc879 100644 --- a/pkgs/applications/audio/deadbeef/default.nix +++ b/pkgs/applications/audio/deadbeef/default.nix @@ -12,6 +12,7 @@ , midiSupport ? false, wildmidi ? null , wavpackSupport ? false, wavpack ? null , ffmpegSupport ? false, ffmpeg ? null +, apeSupport ? true, yasm ? null # misc plugins , zipSupport ? true, libzip ? null , artworkSupport ? true, imlib2 ? null @@ -38,6 +39,7 @@ assert cdaSupport -> (libcdio != null && libcddb != null); assert aacSupport -> faad2 != null; assert zipSupport -> libzip != null; assert ffmpegSupport -> ffmpeg != null; +assert apeSupport -> yasm != null; assert artworkSupport -> imlib2 != null; assert hotkeysSupport -> libX11 != null; assert osdSupport -> dbus != null; @@ -68,6 +70,7 @@ stdenv.mkDerivation rec { ++ optional aacSupport faad2 ++ optional zipSupport libzip ++ optional ffmpegSupport ffmpeg + ++ optional apeSupport yasm ++ optional artworkSupport imlib2 ++ optional hotkeysSupport libX11 ++ optional osdSupport dbus