summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.08/baloo-widgets.nix
blob: d38eea96c59967b57da2f872c33cdd13e8c8ab0f (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
24
25
26
27
28
29
30
31
32
33
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, kconfig
, kio
, ki18n
, kservice
, kfilemetadata
, baloo
, kdelibs4support
}:

kdeApp {
  name = "baloo-widgets";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
  ];
  buildInputs = [
    kconfig
    kio
    ki18n
    kservice
    kfilemetadata
    baloo
    kdelibs4support
  ];
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}