a856cce9ab
ffmpegthumbs is no longer compatibile with ffmpeg post v20.11.80/v21.03.80 due to dropping a call to av_register_all(). Bump ffmpeg dependency to match new required version.
16 lines
316 B
Nix
16 lines
316 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
ffmpeg_4, kio, taglib
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ffmpegthumbs";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ ffmpeg_4 kio taglib ];
|
|
}
|