2021-09-18 11:48:23 +02:00
|
|
|
{ lib, mkDerivation
|
|
|
|
, extra-cmake-modules, kdoctools
|
|
|
|
, grantlee, kcmutils, kconfig, kcoreaddons, kdbusaddons, ki18n
|
|
|
|
, kinit, khtml, kservice, xapian
|
2016-06-16 16:28:00 +02:00
|
|
|
}:
|
|
|
|
|
2017-05-16 17:56:41 +02:00
|
|
|
mkDerivation {
|
2020-12-25 00:05:07 +01:00
|
|
|
pname = "khelpcenter";
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-06-21 15:50:10 +02:00
|
|
|
buildInputs = [
|
2021-05-11 22:30:31 +02:00
|
|
|
grantlee kcmutils kconfig kcoreaddons kdbusaddons khtml
|
2017-06-21 15:50:10 +02:00
|
|
|
ki18n kinit kservice xapian
|
2017-05-16 17:56:41 +02:00
|
|
|
];
|
2021-09-18 11:48:23 +02:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://apps.kde.org/help/";
|
|
|
|
description = "Help center";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
};
|
2017-01-03 00:33:15 +01:00
|
|
|
}
|