summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/kdegraphics-thumbnailers.nix
blob: 520bad0d066a40068ebc4db385b95fe085e9801d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ kdeApp
, lib
, extra-cmake-modules
, kio
, libkexiv2
, libkdcraw
}:

kdeApp {
  name = "kdegraphics-thumbnailers";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kio
    libkexiv2
    libkdcraw
  ];
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}