nixpkgs/pkgs/desktops/kde-5/applications/ffmpegthumbs.nix

16 lines
262 B
Nix
Raw Normal View History

{
kdeApp, lib,
ecm,
ffmpeg, kio
}:
kdeApp {
name = "ffmpegthumbs";
meta = {
license = with lib.licenses; [ gpl2 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ ecm ];
propagatedBuildInputs = [ ffmpeg kio ];
}