libsForQt5.ffmpegthumbs: unpin FFmpeg 4

Builds fine with FFmpeg 7, and Arch ships it like that.
This commit is contained in:
Emily 2024-08-03 19:37:05 +01:00
parent 4d77d90c23
commit d62b72d4ee

View File

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