From 0ea8c6027049d4eecc5ba71585e51d72b6f16df2 Mon Sep 17 00:00:00 2001 From: Atemu Date: Sun, 29 Dec 2024 16:48:09 +0100 Subject: [PATCH] ffmpeg-full: disable lcevcdec The dep should be fixed as to not require AVX but, in the mean time, disable it entirely. Fixes https://github.com/NixOS/nixpkgs/issues/368440 --- pkgs/development/libraries/ffmpeg/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index 33cebfb2a9a3..4b81b4a63257 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -75,7 +75,7 @@ , withKvazaar ? withFullDeps # HEVC encoding , withLadspa ? withFullDeps # LADSPA audio filtering , withLc3 ? withFullDeps && lib.versionAtLeast version "7.1" # LC3 de/encoding -, withLcevcdec ? withFullDeps && lib.versionAtLeast version "7.1" # LCEVC decoding +, withLcevcdec ? false && lib.versionAtLeast version "7.1" # LCEVC decoding # FIXME currently makes ffmpeg crash in any operation on non-AVX CPUs , withLcms2 ? withFullDeps # ICC profile support via lcms2 , withLzma ? withHeadlessDeps # xz-utils , withMetal ? false # Unfree and requires manual downloading of files