about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix
blob: 79db990f191c0e31fd4d55bb43c6af9b74ee31a7 (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
, kconfig
, kcoreaddons
, kcrash
, kdbusaddons
, kwindowsystem
, makeQtWrapper
, qtx11extras
}:

kdeFramework {
  name = "kglobalaccel";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
  propagatedBuildInputs = [
    kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/kglobalaccel5"
  '';
}