2022-12-16T09:51:14 jellyfin-ffmpeg 5.1.2-4 -> 5.1.2-5 https://github.com/jellyfin/jellyfin-ffmpeg/releases 2022-12-16T09:51:16 attrpath: jellyfin-ffmpeg 2022-12-16T09:51:17 Checking auto update branch... 2022-12-16T09:51:17 No auto update branch exists 2022-12-16T09:51:17 Old version 5.1.2-4" 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-5"; src = fetchFromGitHub { owner = "jellyfin"; repo = "jellyfin-ffmpeg"; rev = "v${version}"; sha256 = "sha256-2mSixlrTgAVD2ZRGoi1+UEbhba7QEVvKmigwC9dLk2g="; }; 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 ]; }; })