Merge pull request #337319 from emilazy/push-tuksqzuumnzo

nixos/go2rtc: unpin FFmpeg 6
This commit is contained in:
Martin Weinelt 2024-08-26 02:45:50 +02:00 committed by GitHub
commit 4da8cc80f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,8 +55,8 @@ in
ffmpeg = {
bin = mkOption {
type = path;
default = "${lib.getBin pkgs.ffmpeg_6-headless}/bin/ffmpeg";
defaultText = literalExpression "\${lib.getBin pkgs.ffmpeg_6-headless}/bin/ffmpeg";
default = lib.getExe pkgs.ffmpeg_7-headless;
defaultText = literalExpression "lib.getExe pkgs.ffmpeg_7-headless";
description = ''
The ffmpeg package to use for transcoding.
'';