summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kglobalaccel.nix
blob: f7c5ea562661731360b8bcc36bbe77d07db6bd70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ kdeFramework, lib
, extra-cmake-modules
, kconfig
, kcoreaddons
, kcrash
, kdbusaddons
, kwindowsystem
, qtx11extras
}:

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