summary refs log tree commit diff
path: root/pkgs/applications/kde/ffmpegthumbs.nix
blob: 5dde6d8a64ea02bc45148e32db3475824b754971 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  kdeApp, lib,
  extra-cmake-modules,
  ffmpeg, kio
}:

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