mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
15 lines
355 B
Nix
15 lines
355 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, boost, kconfig, kcoreaddons, kdbusaddons, ki18n, kio, kglobalaccel
|
|
, kwindowsystem, kxmlgui
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kactivitymanagerd";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
boost kconfig kcoreaddons kdbusaddons kglobalaccel ki18n kio kwindowsystem
|
|
kxmlgui
|
|
];
|
|
}
|