diff --git a/pkgs/apps/ffmpeg/generic.nix b/pkgs/apps/ffmpeg/generic.nix index 8e6ac65..883db59 100644 --- a/pkgs/apps/ffmpeg/generic.nix +++ b/pkgs/apps/ffmpeg/generic.nix @@ -116,7 +116,7 @@ */ , withGPL ? true , withGPLv3 ? true -, withUnfree ? true +, withUnfree ? false /* * Build options @@ -703,7 +703,7 @@ stdenv.mkDerivation (finalAttrs: { license = with licenses; [ lgpl21Plus ] ++ optional withGPL gpl2Plus ++ optional withGPLv3 gpl3Plus - ++ optional withUnfree unfree; + ++ optional withUnfree unfreeRedistributable; pkgConfigModules = [ "libavutil" ]; platforms = platforms.all; maintainers = with maintainers; [ atemu ];