nixpkgs/pkgs/applications/kde-apps-15.12/ffmpegthumbs.nix
2015-11-23 06:39:07 -06:00

22 lines
298 B
Nix

{ kdeApp
, lib
, extra-cmake-modules
, ffmpeg
, kio
}:
kdeApp {
name = "ffmpegthumbs";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
ffmpeg
kio
];
meta = {
license = with lib.licenses; [ gpl2 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}