handbrake: fixup build by ffmpeg upstream patch

+6
+6
pkgs/applications/video/handbrake/default.nix
··· 10 10 { stdenv 11 11 , lib 12 12 , fetchFromGitHub 13 + , fetchpatch 13 14 # For tests 14 15 , testers 15 16 , runCommand ··· 135 136 "${src}/contrib/ffmpeg/A28-avcodec-amfenc-HDR-metadata.patch" 136 137 # This patch is not applying since ffmpeg 5.1.1, probably it was backported by upstream 137 138 # "${src}/contrib/ffmpeg/A30-svt-av1-backports.patch" 139 + (fetchpatch { 140 + name = "vulkan-remove-extensions.patch"; 141 + url = "https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/eb0455d64690"; 142 + hash = "sha256-qvLrb7b+9/bel8A2lZuSmBiJtHXsABw0Lvgn1ggnmCU="; 143 + }) 138 144 ]; 139 145 }); 140 146