23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ ffmpeg_6-full
|
|
, chromaprint
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
ffmpeg_6-full.overrideAttrs (old: rec {
|
|
pname = "jellyfin-ffmpeg";
|
|
version = "6.0.1-1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jellyfin";
|
|
repo = "jellyfin-ffmpeg";
|
|
rev = "v${version}";
|
|
hash = "sha256-LMwGxx++z6TpZLnpeRGraid4653Mp8T4pY5EP4Z7GXY=";
|
|
};
|
|
|
|
# Clobber upstream patches as they don't apply to the Jellyfin fork
|
|
patches = [];
|
|
|
|
buildInputs = old.buildInputs ++ [ chromaprint ];
|
|
|
|
configureFlags = old.configureFlags ++ [
|
|
"--extra-version=Jellyfin"
|
|
"--disable-ptx-compression" # https://github.com/jellyfin/jellyfin/issues/7944#issuecomment-1156880067
|
|
"--enable-chromaprint"
|
|
];
|
|
|
|
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 ];
|
|
pkgConfigModules = [ "libavutil" ];
|
|
};
|
|
})
|