From 32f663d5f5eaabdb3a9d225c8481287751ae7e5e Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 1 May 2023 13:07:49 +0100 Subject: [PATCH] ffmpeg_4: add patch for svt-av1 1.5.0 compatibility --- pkgs/development/libraries/ffmpeg/4.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/libraries/ffmpeg/4.nix b/pkgs/development/libraries/ffmpeg/4.nix index 7882c19da8f3..24b7aedb3ec2 100644 --- a/pkgs/development/libraries/ffmpeg/4.nix +++ b/pkgs/development/libraries/ffmpeg/4.nix @@ -1,4 +1,11 @@ import ./generic.nix rec { version = "4.4.3"; sha256 = "sha256-zZDzG1hD+0AHqElzeGR6OVm+H5wqtdktloSPmEUzT/c="; + extraPatches = [ + { + name = "libsvtav1-1.5.0-compat-compressed_ten_bit_format.patch"; + url = "https://git.ffmpeg.org/gitweb/ffmpeg.git/patch/031f1561cd286596cdb374da32f8aa816ce3b135"; + hash = "sha256-mSnmAkoNikDpxcN+A/hpB7mUbbtcMvm4tG6gZFuroe8="; + } + ]; }