nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix
Thomas Tuegel 8be4bd7416
kdeApplications: Move out of desktops/kde-5
- There is no such thing as KDE 5
2017-02-27 11:49:30 -06:00

16 lines
262 B
Nix

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