mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
85dcd8d3ed
It was deprecated in favour of system-monitor Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
18 lines
605 B
Nix
18 lines
605 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, kdoctools,
|
|
kconfig, kconfigwidgets, kcoreaddons, kcmutils, kholidays,
|
|
kio, knewstuff, kpurpose, kross, krunner, kservice,
|
|
kunitconversion, ibus, plasma-framework, plasma-workspace, qtdeclarative,
|
|
qtwebengine, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kdeplasma-addons";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kconfig kconfigwidgets kcoreaddons kcmutils kholidays kio
|
|
knewstuff kpurpose kross krunner kservice kunitconversion ibus
|
|
plasma-framework plasma-workspace qtdeclarative qtwebengine qtx11extras
|
|
];
|
|
}
|