deadbeef: ffmpeg_3 -> ffmpeg

This commit is contained in:
FliegendeWurst 2021-05-18 09:32:24 +02:00
parent 5b1d8990bd
commit f283c27db8

View File

@ -17,7 +17,7 @@
, aacSupport ? true, faad2 ? null , aacSupport ? true, faad2 ? null
, opusSupport ? true, opusfile ? null , opusSupport ? true, opusfile ? null
, wavpackSupport ? false, wavpack ? null , wavpackSupport ? false, wavpack ? null
, ffmpegSupport ? false, ffmpeg_3 ? null , ffmpegSupport ? false, ffmpeg ? null
, apeSupport ? true, yasm ? null , apeSupport ? true, yasm ? null
# misc plugins # misc plugins
, zipSupport ? true, libzip ? null , zipSupport ? true, libzip ? null
@ -45,7 +45,7 @@ assert cdaSupport -> (libcdio != null && libcddb != null);
assert aacSupport -> faad2 != null; assert aacSupport -> faad2 != null;
assert opusSupport -> opusfile != null; assert opusSupport -> opusfile != null;
assert zipSupport -> libzip != null; assert zipSupport -> libzip != null;
assert ffmpegSupport -> ffmpeg_3 != null; assert ffmpegSupport -> ffmpeg != null;
assert apeSupport -> yasm != null; assert apeSupport -> yasm != null;
assert artworkSupport -> imlib2 != null; assert artworkSupport -> imlib2 != null;
assert hotkeysSupport -> libX11 != null; assert hotkeysSupport -> libX11 != null;
@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
++ optional aacSupport faad2 ++ optional aacSupport faad2
++ optional opusSupport opusfile ++ optional opusSupport opusfile
++ optional zipSupport libzip ++ optional zipSupport libzip
++ optional ffmpegSupport ffmpeg_3 ++ optional ffmpegSupport ffmpeg
++ optional apeSupport yasm ++ optional apeSupport yasm
++ optional artworkSupport imlib2 ++ optional artworkSupport imlib2
++ optional hotkeysSupport libX11 ++ optional hotkeysSupport libX11