nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix
anund a856cce9ab
libsForQt5.ffmpegthumbs: ffmpeg_3 -> ffmpeg_4 (#117859)
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.
2021-03-27 23:07:16 -04:00

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 ];
}