summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/krunner.nix
blob: 12d2b54d0eb360aef66c262f89b83dfa625373cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
, ki18n, kio, kservice, plasma-framework, qtquick1, solid
, threadweaver
}:

kdeFramework {
  name = "krunner";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kconfig kcoreaddons kservice qtquick1 solid threadweaver
  ];
  propagatedBuildInputs = [ ki18n kio plasma-framework ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}