nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/kglobalaccel.nix

24 lines
490 B
Nix
Raw Normal View History

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