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.
wip/yesman
anund 3 years ago committed by GitHub
parent 3a498ff0f2
commit a856cce9ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/applications/kde/ffmpegthumbs.nix

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

Loading…
Cancel
Save