From a70c15f59bbbb33bc3c140b65529927c3b9daec9 Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Sat, 19 Apr 2025 09:41:29 +0200 Subject: [PATCH] ffmpeg: build with celt only in -full Celt codec is effectively unused and superseeded by libopus. It makes little sense to support it in the minimal build. If anyone still uses ffmpeg with celt, it is available in -full for now. --- 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 6b6842189201..1f55b6ad2072 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -56,7 +56,7 @@ withBzlib ? withHeadlessDeps, withCaca ? withFullDeps, # Textual display (ASCII art) withCdio ? withFullDeps && withGPL, # Audio CD grabbing - withCelt ? withHeadlessDeps, # CELT decoder + withCelt ? withFullDeps, # CELT decoder withChromaprint ? withFullDeps, # Audio fingerprinting withCodec2 ? withFullDeps, # codec2 en/decoding withCuda ? withFullDeps && withNvcodec,