summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/kde-frameworks/krunner.nix
blob: 876067422e1c5d867f5db64c13b209dfc6080985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  mkDerivation,
  cmake,
  extra-cmake-modules,
  kconfig,
  kcoreaddons,
  ki18n,
  kio,
  kservice,
  plasma-framework,
  qtbase,
  qtdeclarative,
  solid,
  threadweaver,
  kwindowsystem,
}:

let
  self = mkDerivation {
    pname = "krunner";
    nativeBuildInputs = [
      cmake
      extra-cmake-modules
    ];
    buildInputs = [
      kconfig
      kcoreaddons
      ki18n
      kio
      kservice
      qtdeclarative
      solid
      threadweaver
    ];
    propagatedBuildInputs = [
      plasma-framework
      qtbase
      kwindowsystem
    ];
  };
in
self