khelpcenter: use kdeWrapper

This commit is contained in:
Thomas Tuegel 2016-07-30 17:34:42 -05:00
parent ee88a01dd5
commit b93b617f18

View File

@ -1,17 +1,19 @@
{ {
kdeApp, ecm, kdoctools, makeQtWrapper, kdeApp, kdeWrapper,
ecm, kdoctools,
grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils,
kdelibs4support, khtml, kservice, xapian kdelibs4support, khtml, kservice, xapian
}: }:
kdeApp { let
name = "khelpcenter"; unwrapped =
nativeBuildInputs = [ ecm kdoctools makeQtWrapper ]; kdeApp {
buildInputs = [ name = "khelpcenter";
grantlee kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit nativeBuildInputs = [ ecm kdoctools ];
kcmutils kservice xapian buildInputs = [
]; grantlee kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons
postInstall = '' kinit kcmutils kservice xapian
wrapQtProgram "$out/bin/khelpcenter" ];
''; };
} in
kdeWrapper unwrapped { targets = [ "bin/khelpcenter" ]; }