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

kdeFramework {
  name = "kded";
  buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ];
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}