8be4bd7416
- There is no such thing as KDE 5
16 lines
262 B
Nix
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 ];
|
|
}
|