Merge pull request #323384 from qubitnano/handbrake

handbrake: 1.8.0 -> 1.8.1

authored by tomberek and committed by GitHub cea41e28 ecefa343

+6 -7
+6 -7
pkgs/applications/video/handbrake/default.nix
··· 90 90 }: 91 91 92 92 let 93 - version = "1.8.0"; 93 + version = "1.8.1"; 94 94 95 95 src = fetchFromGitHub { 96 96 owner = "HandBrake"; 97 97 repo = "HandBrake"; 98 98 # uses version commit for logic in version.txt 99 - rev = "5edf59c1da54fe1c9a487d09e8f52561fe49cb2a"; 100 - hash = "sha256-gr2UhqPY5mZOP8KBvk9yydl4AkTlqE83hYAcLwSv1Is="; 99 + rev = "e9ff2bdf1ac670eb9c6d6170e27c999c05535127"; 100 + hash = "sha256-grbT+oRIyLnyJowhdqw7qGRg11HzWGIU9yTwUQhCWtg="; 101 101 }; 102 102 103 103 # Handbrake maintains a set of ffmpeg patches. In particular, these ··· 105 105 # https://github.com/HandBrake/HandBrake/issues/4029 106 106 # base ffmpeg version is specified in: 107 107 # https://github.com/HandBrake/HandBrake/blob/master/contrib/ffmpeg/module.defs 108 - ffmpeg-version = "7.0"; 108 + ffmpeg-version = "7.0.1"; 109 109 ffmpeg-hb = (ffmpeg_7-full.override { 110 110 version = ffmpeg-version; 111 - hash = "sha256-RdDfv+0y90XpgjIRvTjsemKyGunzDbsh4j4WiE9rfyM="; 111 + hash = "sha256-HiCT6bvLx4zmJ6ffutoimdz5ENQ55CRF64WBT3HeXMA="; 112 112 }).overrideAttrs (old: { 113 113 patches = (old.patches or [ ]) ++ [ 114 114 "${src}/contrib/ffmpeg/A01-mov-read-name-track-tag-written-by-movenc.patch" ··· 133 133 "${src}/contrib/ffmpeg/A16-amfenc-HDR-metadata.patch" 134 134 "${src}/contrib/ffmpeg/A17-av1dec-dovi-rpu.patch" 135 135 "${src}/contrib/ffmpeg/A18-avformat-mov-add-support-audio-fallback-track-ref.patch" 136 - "${src}/contrib/ffmpeg/A19-mov-ignore-old-infe-box.patch" 137 - "${src}/contrib/ffmpeg/A20-mov-free-infe-on-failure.patch" 136 + "${src}/contrib/ffmpeg/A19-fix-qsv-on-gcc-14.patch" 138 137 ]; 139 138 }); 140 139