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

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