mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
nixos/kde5: install kactivitymanagerd
This commit is contained in:
parent
99c06657df
commit
5896befee0
|
@ -111,6 +111,9 @@ in
|
|||
# Install Breeze icons if available
|
||||
++ lib.optional (lib.hasAttr "breeze-icons" kde5) kde5.breeze-icons
|
||||
|
||||
# Install activity manager if available
|
||||
++ lib.optional (lib.hasAttr "kactivitymanagerd" kde5) kde5.kactivitymanagerd
|
||||
|
||||
# Optional hardware support features
|
||||
++ lib.optional config.hardware.bluetooth.enable kde5.bluedevil
|
||||
++ lib.optional config.networking.networkmanager.enable kde5.plasma-nm
|
||||
|
|
|
@ -53,6 +53,7 @@ let
|
|||
in
|
||||
symlinkJoin "breeze-${version}"
|
||||
(map (pkg: pkg.out or pkg) [ breeze-gtk breeze-qt4 breeze-qt5 ]);
|
||||
kactivitymanagerd = callPackage ./kactivitymanagerd.nix {};
|
||||
kde-cli-tools = callPackage ./kde-cli-tools.nix {};
|
||||
kde-gtk-config = callPackage ./kde-gtk-config {};
|
||||
kdecoration = callPackage ./kdecoration.nix {};
|
||||
|
|
14
pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix
Normal file
14
pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue