mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
23 lines
469 B
Nix
23 lines
469 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kcrash
|
|
, kdbusaddons
|
|
, kwindowsystem
|
|
, makeQtWrapper
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kglobalaccel";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
|
|
propagatedBuildInputs = [
|
|
kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kglobalaccel5"
|
|
'';
|
|
}
|