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