nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix

16 lines
316 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules,
2021-01-31 16:19:23 +00:00
ffmpeg_3, kio, taglib
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "ffmpegthumbs";
meta = {
license = with lib.licenses; [ gpl2 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
2021-01-31 16:19:23 +00:00
buildInputs = [ ffmpeg_3 kio taglib ];
}