7 (ffmpeg_5-full.override {
8 nv-codec-headers = nv-codec-headers-11;
9 }).overrideAttrs (old: rec {
10 pname = "jellyfin-ffmpeg";
13 src = fetchFromGitHub {
15 repo = "jellyfin-ffmpeg";
17 sha256 = "sha256-yzaS50sPgyRRLnvzaOiKOEaHKL3Yuf89KsHyPebjoL8=";
20 configureFlags = old.configureFlags ++ [
21 "--disable-ptx-compression" # https://github.com/jellyfin/jellyfin/issues/7944#issuecomment-1156880067
25 for file in $(cat debian/patches/series); do
26 patch -p1 < debian/patches/$file
29 ${old.postPatch or ""}
33 description = "${old.meta.description} (Jellyfin fork)";
34 homepage = "https://github.com/jellyfin/jellyfin-ffmpeg";
35 license = licenses.gpl3;
36 maintainers = with maintainers; [ justinas ];