mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
42 lines
590 B
Nix
42 lines
590 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, kauth
|
|
, kcompletion
|
|
, kconfigwidgets
|
|
, kcoreaddons
|
|
, kservice
|
|
, kwidgetsaddons
|
|
, kwindowsystem
|
|
, plasma-framework
|
|
, qtscript
|
|
, qtwebkit
|
|
, qtx11extras
|
|
, kconfig
|
|
, ki18n
|
|
, kiconthemes
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "libksysguard";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kauth
|
|
kcompletion
|
|
kconfigwidgets
|
|
kcoreaddons
|
|
kservice
|
|
kwidgetsaddons
|
|
kwindowsystem
|
|
plasma-framework
|
|
qtscript
|
|
qtwebkit
|
|
qtx11extras
|
|
];
|
|
propagatedBuildInputs = [
|
|
kconfig
|
|
ki18n
|
|
kiconthemes
|
|
];
|
|
}
|