21 lines
497 B
Nix
21 lines
497 B
Nix
|
{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
|
||
|
, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support
|
||
|
, khtml, kservice, makeQtWrapper
|
||
|
}:
|
||
|
|
||
|
plasmaPackage {
|
||
|
name = "khelpcenter";
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules
|
||
|
kdoctools
|
||
|
makeQtWrapper
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kconfig kcoreaddons kdbusaddons kinit kcmutils kservice
|
||
|
];
|
||
|
propagatedBuildInputs = [ kdelibs4support khtml ki18n ];
|
||
|
postInstall = ''
|
||
|
wrapQtProgram "$out/bin/khelpcenter"
|
||
|
'';
|
||
|
}
|