From e7d8069780150e190532cbad33f7eb430a3ed697 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 18 Sep 2024 12:07:51 +0200 Subject: [PATCH] handbrake: fix build by applying an upstream patch again Override hell as usual for handbrake. The patch was dropped from the base package in e5c3ef1ea21dd31 --- pkgs/applications/video/handbrake/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/applications/video/handbrake/default.nix b/pkgs/applications/video/handbrake/default.nix index f3f6dacd4a540..8b1dd0d4e8ed5 100644 --- a/pkgs/applications/video/handbrake/default.nix +++ b/pkgs/applications/video/handbrake/default.nix @@ -11,6 +11,7 @@ , lib , fetchFromGitHub , fetchpatch +, fetchpatch2 # For tests , testers , runCommand @@ -135,6 +136,12 @@ let "${src}/contrib/ffmpeg/A18-qsv-fix-decode-10bit-hdr.patch" "${src}/contrib/ffmpeg/A19-ffbuild-common-use-gzip-n-flag-for-cuda.patch" + + (fetchpatch2 { + name = "fix_vulkan_av1.patch"; + url = "https://git.ffmpeg.org/gitweb/ffmpeg.git/patch/e06ce6d2b45edac4a2df04f304e18d4727417d24"; + hash = "sha256-73mlX1rdJrguw7OXaSItfHtI7gflDrFj+7SepVvvUIg="; + }) ]; });