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

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