18 lines
371 B
Nix
18 lines
371 B
Nix
{ 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
|
|
];
|
|
}
|