2022-11-05T19:08:36 jellyfin-ffmpeg 5.1.2-2 -> 5.1.2-4 https://github.com/jellyfin/jellyfin-ffmpeg/releases 2022-11-05T19:08:38 attrpath: jellyfin-ffmpeg 2022-11-05T19:08:38 Checking auto update branch... 2022-11-05T19:08:38 No auto update branch exists 2022-11-05T19:08:39 Old version 5.1.2-2" not present in master derivation file with contents: { ffmpeg_5-full , nv-codec-headers-11 , fetchFromGitHub , lib }: (ffmpeg_5-full.override { nv-codec-headers = nv-codec-headers-11; }).overrideAttrs (old: rec { pname = "jellyfin-ffmpeg"; version = "5.1.2-4"; src = fetchFromGitHub { owner = "jellyfin"; repo = "jellyfin-ffmpeg"; rev = "v${version}"; sha256 = "sha256-yzaS50sPgyRRLnvzaOiKOEaHKL3Yuf89KsHyPebjoL8="; }; configureFlags = old.configureFlags ++ [ "--disable-ptx-compression" # https://github.com/jellyfin/jellyfin/issues/7944#issuecomment-1156880067 ]; postPatch = '' for file in $(cat debian/patches/series); do patch -p1 < debian/patches/$file done ${old.postPatch or ""} ''; meta = with lib; { description = "${old.meta.description} (Jellyfin fork)"; homepage = "https://github.com/jellyfin/jellyfin-ffmpeg"; license = licenses.gpl3; maintainers = with maintainers; [ justinas ]; }; })