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.
This commit is contained in:
anund 2021-03-28 03:07:16 +00:00 committed by GitHub
parent 3a498ff0f2
commit a856cce9ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{
mkDerivation, lib,
extra-cmake-modules,
ffmpeg_3, kio, taglib
ffmpeg_4, kio, taglib
}:
mkDerivation {
@ -11,5 +11,5 @@ mkDerivation {
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ffmpeg_3 kio taglib ];
buildInputs = [ ffmpeg_4 kio taglib ];
}