1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:06:41 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/kglobalaccel.nix

24 lines
490 B
Nix
Raw Normal View History

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