5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
43 lines
627 B
Nix
43 lines
627 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, boost
|
|
, kcmutils
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, kdeclarative
|
|
, kglobalaccel
|
|
, ki18n
|
|
, kio
|
|
, kservice
|
|
, kwindowsystem
|
|
, kxmlgui
|
|
, qtdeclarative
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kactivities";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
boost
|
|
kcmutils
|
|
kconfig
|
|
kcoreaddons
|
|
kdbusaddons
|
|
kdeclarative
|
|
kglobalaccel
|
|
ki18n
|
|
kio
|
|
kservice
|
|
kwindowsystem
|
|
kxmlgui
|
|
qtdeclarative
|
|
];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/kactivitymanagerd"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|