8 (ffmpeg_6-full.override {
9 nv-codec-headers-11 = nv-codec-headers-12;
10 }).overrideAttrs (old: rec {
11 pname = "jellyfin-ffmpeg";
14 src = fetchFromGitHub {
16 repo = "jellyfin-ffmpeg";
18 sha256 = "sha256-Z4getn/mVYIRANkIOyt7jMpcqHBvq5GXLK/ST5zV1r4=";
21 buildInputs = old.buildInputs ++ [ chromaprint ];
23 configureFlags = old.configureFlags ++ [
24 "--extra-version=Jellyfin"
25 "--disable-ptx-compression" # https://github.com/jellyfin/jellyfin/issues/7944#issuecomment-1156880067
26 "--enable-chromaprint"
30 for file in $(cat debian/patches/series); do
31 patch -p1 < debian/patches/$file
34 ${old.postPatch or ""}
38 description = "${old.meta.description} (Jellyfin fork)";
39 homepage = "https://github.com/jellyfin/jellyfin-ffmpeg";
40 license = licenses.gpl3;
41 maintainers = with maintainers; [ justinas ];