mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
46 lines
621 B
Nix
46 lines
621 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
|
|
kdelibs4support
|
|
ki18n
|
|
kio
|
|
knewstuff
|
|
kross
|
|
krunner
|
|
kservice
|
|
kunitconversion
|
|
plasma-framework
|
|
qtdeclarative
|
|
qtx11extras
|
|
];
|
|
}
|