mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
21 lines
619 B
Nix
21 lines
619 B
Nix
{ plasmaPackage, extra-cmake-modules, kdoctools
|
|
, kconfig, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n
|
|
, kio, knewstuff, kross, krunner, kservice, ksysguard, kunitconversion
|
|
, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras
|
|
, ibus
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kdeplasma-addons";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
propagatedBuildInputs = [
|
|
kconfig kconfigwidgets kcoreaddons kcmutils kdelibs4support kio knewstuff
|
|
kross krunner kservice ksysguard kunitconversion plasma-framework
|
|
plasma-workspace qtdeclarative qtx11extras
|
|
ibus
|
|
];
|
|
}
|