8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
45 lines
579 B
Nix
45 lines
579 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kactivities
|
|
, kauth
|
|
, kconfig
|
|
, kdbusaddons
|
|
, kdelibs4support
|
|
, kglobalaccel
|
|
, ki18n
|
|
, kidletime
|
|
, kio
|
|
, knotifyconfig
|
|
, libkscreen
|
|
, plasma-workspace
|
|
, qtx11extras
|
|
, solid
|
|
, udev
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "powerdevil";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
kactivities
|
|
kauth
|
|
kconfig
|
|
kdbusaddons
|
|
kdelibs4support
|
|
kglobalaccel
|
|
ki18n
|
|
kidletime
|
|
kio
|
|
knotifyconfig
|
|
libkscreen
|
|
plasma-workspace
|
|
qtx11extras
|
|
solid
|
|
udev
|
|
];
|
|
}
|