mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
19 lines
339 B
Nix
19 lines
339 B
Nix
{ kdeFramework, lib
|
|
, ecm
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kcrash
|
|
, kdbusaddons
|
|
, kwindowsystem
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kglobalaccel";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ ecm ];
|
|
propagatedBuildInputs = [
|
|
kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras
|
|
];
|
|
}
|