summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/kactivities.nix
blob: 3225098f43980a1c98c5fa4efcb87545d6b92a28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig
, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n
, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative
}:

kdeFramework {
  name = "kactivities";
  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
  buildInputs = [
    boost kcmutils kconfig kcoreaddons kdbusaddons kservice
    kxmlgui
  ];
  propagatedBuildInputs = [
    kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/kactivitymanagerd"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}