24 lines
490 B
Nix
Raw Normal View History

{ kdeFramework, lib
2015-09-27 10:02:10 -05:00
, extra-cmake-modules
, kconfig
, kcoreaddons
, kcrash
, kdbusaddons
, kwindowsystem
2015-10-18 09:24:59 -05:00
, makeQtWrapper
2015-09-27 10:02:10 -05:00
, qtx11extras
}:
kdeFramework {
2015-09-27 10:02:10 -05:00
name = "kglobalaccel";
2015-10-18 09:24:59 -05:00
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
2015-10-10 12:42:19 -05:00
buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ];
propagatedBuildInputs = [ kwindowsystem qtx11extras ];
2015-09-27 10:02:10 -05:00
postInstall = ''
2015-10-18 09:24:59 -05:00
wrapQtProgram "$out/bin/kglobalaccel5"
2015-09-27 10:02:10 -05:00
'';
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}