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

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