summary refs log blame commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix
blob: 53e9d807d647a6d7cb8ef36e1d6b90c23641bdc4 (plain) (tree)




















                                               
{ 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 ];
  };
}