2021-09-28 08:13:01 +00:00
|
|
|
{ lib, mkDerivation
|
|
|
|
, extra-cmake-modules, kdoctools
|
|
|
|
, grantlee, kcmutils, kconfig, kcoreaddons, kdbusaddons, ki18n
|
|
|
|
, kinit, khtml, kservice, xapian
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2021-01-05 17:05:55 +00:00
|
|
|
pname = "khelpcenter";
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
buildInputs = [
|
2021-05-28 09:39:13 +00:00
|
|
|
grantlee kcmutils kconfig kcoreaddons kdbusaddons khtml
|
2020-04-24 23:36:52 +00:00
|
|
|
ki18n kinit kservice xapian
|
|
|
|
];
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
qtWrapperArgs+=(
|
|
|
|
--prefix MANPATH : /nix/var/nix/profiles/system/sw/share/man
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2021-09-28 08:13:01 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://apps.kde.org/help/";
|
|
|
|
description = "Help center";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|