summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix
blob: feacf7e437e7c55f1d4739e689cf0746fe5f9d21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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
  ];
}