summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.14/kcmutils/default.nix
blob: ac7a5af06a40b567ff7c589beb6eff636eef5f78 (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
{ kdeFramework, lib
, extra-cmake-modules
, kconfigwidgets
, kcoreaddons
, kdeclarative
, ki18n
, kiconthemes
, kitemviews
, kpackage
, kservice
, kxmlgui
}:

kdeFramework {
  name = "kcmutils";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kcoreaddons
    kdeclarative
    ki18n
    kiconthemes
    kitemviews
    kpackage
    kxmlgui
  ];
  propagatedBuildInputs = [ kconfigwidgets kservice ];
  patches = [ ./kcmutils-pluginselector-follow-symlinks.patch ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}