mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
21 lines
487 B
Nix
21 lines
487 B
Nix
|
{ kdeApp, extra-cmake-modules, kdoctools, makeQtWrapper
|
||
|
, grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils
|
||
|
, kdelibs4support, khtml, kservice
|
||
|
, xapian
|
||
|
}:
|
||
|
|
||
|
kdeApp {
|
||
|
name = "khelpcenter";
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules kdoctools makeQtWrapper
|
||
|
];
|
||
|
buildInputs = [
|
||
|
grantlee kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit
|
||
|
kcmutils kservice
|
||
|
xapian
|
||
|
];
|
||
|
postInstall = ''
|
||
|
wrapQtProgram "$out/bin/khelpcenter"
|
||
|
'';
|
||
|
}
|