nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix
Emily d62b72d4ee libsForQt5.ffmpegthumbs: unpin FFmpeg 4
Builds fine with FFmpeg 7, and Arch ships it like that.
2024-08-22 15:22:20 +01:00

16 lines
316 B
Nix

{
mkDerivation, lib,
extra-cmake-modules,
ffmpeg_7, kio, taglib
}:
mkDerivation {
pname = "ffmpegthumbs";
meta = {
license = with lib.licenses; [ gpl2 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ffmpeg_7 kio taglib ];
}