mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 01:33:20 +00:00
jellyfin-ffmpeg: fix build
This commit is contained in:
parent
1a0bcbcb08
commit
55f8c48b10
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user