summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/krunner.nix
blob: 618494ef5c5835e202e8f5ef561cd2d39d8efb0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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 ki18n kio kservice qtquick1 solid threadweaver
  ];
  propagatedBuildInputs = [ plasma-framework ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}