summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix
blob: 3a27d85b9166e6239b09278cbd782ad6dd8fd728 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem
}:

kdeFramework {
  name = "kservice";
  propagatedNativeBuildInputs = [ extra-cmake-modules ];
  nativeBuildInputs = [ kdoctools ];
  buildInputs = [ kcrash kdbusaddons ];
  propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ];
  patches = [
    ./0001-qdiriterator-follow-symlinks.patch
    ./0002-no-canonicalize-path.patch
  ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}