plasma-welcome: init at 5.27.0
This commit is contained in:
parent
131c8fa532
commit
f0b101fd06
2 changed files with 45 additions and 0 deletions
|
@ -163,6 +163,7 @@ let
|
|||
plasma-systemmonitor = callPackage ./plasma-systemmonitor.nix { };
|
||||
plasma-thunderbolt = callPackage ./plasma-thunderbolt.nix { };
|
||||
plasma-vault = callPackage ./plasma-vault { };
|
||||
plasma-welcome = callPackage ./plasma-welcome.nix { };
|
||||
plasma-workspace = callPackage ./plasma-workspace { };
|
||||
plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix { };
|
||||
polkit-kde-agent = callPackage ./polkit-kde-agent.nix { };
|
||||
|
|
44
pkgs/desktops/plasma-5/plasma-welcome.nix
Normal file
44
pkgs/desktops/plasma-5/plasma-welcome.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{ mkDerivation
|
||||
, extra-cmake-modules
|
||||
, qtquickcontrols2
|
||||
, accounts-qt
|
||||
, kaccounts-integration
|
||||
, kcoreaddons
|
||||
, kconfigwidgets
|
||||
, kdbusaddons
|
||||
, kdeclarative
|
||||
, ki18n
|
||||
, kio
|
||||
, kirigami2
|
||||
, knewstuff
|
||||
, knotifications
|
||||
, kservice
|
||||
, kuserfeedback
|
||||
, kwindowsystem
|
||||
, plasma-framework
|
||||
, signond
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
pname = "plasma-welcome";
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
buildInputs = [
|
||||
qtquickcontrols2
|
||||
accounts-qt
|
||||
kaccounts-integration
|
||||
kcoreaddons
|
||||
kconfigwidgets
|
||||
kdbusaddons
|
||||
kdeclarative
|
||||
ki18n
|
||||
kio
|
||||
kirigami2
|
||||
knewstuff
|
||||
knotifications
|
||||
kservice
|
||||
kuserfeedback
|
||||
kwindowsystem
|
||||
plasma-framework
|
||||
signond
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue