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.

authored by anund and committed by GitHub a856cce9 3a498ff0

+2 -2
+2 -2
pkgs/applications/kde/ffmpegthumbs.nix
··· 1 { 2 mkDerivation, lib, 3 extra-cmake-modules, 4 - ffmpeg_3, kio, taglib 5 }: 6 7 mkDerivation { ··· 11 maintainers = [ lib.maintainers.ttuegel ]; 12 }; 13 nativeBuildInputs = [ extra-cmake-modules ]; 14 - buildInputs = [ ffmpeg_3 kio taglib ]; 15 }
··· 1 { 2 mkDerivation, lib, 3 extra-cmake-modules, 4 + ffmpeg_4, kio, taglib 5 }: 6 7 mkDerivation { ··· 11 maintainers = [ lib.maintainers.ttuegel ]; 12 }; 13 nativeBuildInputs = [ extra-cmake-modules ]; 14 + buildInputs = [ ffmpeg_4 kio taglib ]; 15 }