summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/krunner.nix
blob: 826999f2f9be8ead6aaeb27faf9f86e7793c1940 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  mkDerivation, lib,
  extra-cmake-modules,
  kconfig, kcoreaddons, ki18n, kio, kservice, plasma-framework, qtbase,
  qtdeclarative, solid, threadweaver, kwindowsystem
}:

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