summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/kglobalaccel.nix
blob: c535b3590a38895e135a6815af805e2434635ff1 (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
{ kdeFramework, lib
, extra-cmake-modules
, kconfig
, kcoreaddons
, kcrash
, kdbusaddons
, kwindowsystem
, makeQtWrapper
, qtx11extras
}:

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