1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/desktops/plasma-5/kactivitymanagerd.nix

15 lines
353 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
2016-04-21 21:59:20 +01:00
, boost, kconfig, kcoreaddons, kdbusaddons, ki18n, kio, kglobalaccel
, kwindowsystem, kxmlgui
}:
mkDerivation {
2016-04-21 21:59:20 +01:00
name = "kactivitymanagerd";
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-21 21:59:20 +01:00
propagatedBuildInputs = [
boost kconfig kcoreaddons kdbusaddons kglobalaccel ki18n kio kwindowsystem
kxmlgui
];
}