5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
40 lines
800 B
Nix
40 lines
800 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kactivities
|
|
, karchive
|
|
, kconfig
|
|
, kconfigwidgets
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, kdeclarative
|
|
, kdoctools
|
|
, kglobalaccel
|
|
, kguiaddons
|
|
, ki18n
|
|
, kiconthemes
|
|
, kio
|
|
, knotifications
|
|
, kpackage
|
|
, kservice
|
|
, kwindowsystem
|
|
, kxmlgui
|
|
, qtscript
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "plasma-framework";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kactivities karchive kconfig kconfigwidgets kcoreaddons
|
|
kdbusaddons kdeclarative kglobalaccel kguiaddons ki18n kiconthemes
|
|
kio knotifications kwindowsystem kxmlgui qtscript qtx11extras
|
|
];
|
|
propagatedBuildInputs = [ kpackage kservice ];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/plasmapkg2"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|