summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.12/ffmpegthumbs.nix
blob: 53e9d807d647a6d7cb8ef36e1d6b90c23641bdc4 (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";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    ffmpeg
    kio
  ];
  meta = {
    license = with lib.licenses; [ gpl2 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}