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

kdeFramework {
  name = "kglobalaccel";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [
    kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras
  ];
}