about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix
blob: dbbb783ac6152bc2de2796c7b36eca977d1e42ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets
, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews
, kpackage, kservice, kxmlgui
}:

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