jellyfin-ffmpeg: fix build

This commit is contained in:
zowoq 2022-09-01 13:46:54 +10:00
parent 1a0bcbcb08
commit 55f8c48b10

View file

@ -2,6 +2,7 @@
, nv-codec-headers-11
, fetchFromGitHub
, lib
, fetchpatch
}:
(ffmpeg_5-full.override {
@ -21,6 +22,15 @@
"--disable-ptx-compression" # https://github.com/jellyfin/jellyfin/issues/7944#issuecomment-1156880067
];
patches = old.patches ++ [
# fixed in upstream ffmpeg 5.1.1 https://trac.ffmpeg.org/ticket/9841
(fetchpatch {
name = "rename-imf-fate-target.patch";
url = "https://github.com/FFmpeg/FFmpeg/commit/80d1b8938eb227f0e9efde91050836b1e9a051a9.patch";
sha256 = "sha256-weUbLKSQ9iRYSQ3hgXcVpo8jfKajpXK21qD1GrZYHYQ=";
})
];
postPatch = ''
for file in $(cat debian/patches/series); do
patch -p1 < debian/patches/$file