mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
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:
parent
3a498ff0f2
commit
a856cce9ab
|
@ -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…
Reference in a new issue