mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 02:53:55 +00:00
18 lines
448 B
Nix
18 lines
448 B
Nix
{
|
|
kdeApp, ecm, kdoctools, makeQtWrapper,
|
|
grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils,
|
|
kdelibs4support, khtml, kservice, xapian
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "khelpcenter";
|
|
nativeBuildInputs = [ ecm kdoctools makeQtWrapper ];
|
|
buildInputs = [
|
|
grantlee kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit
|
|
kcmutils kservice xapian
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/khelpcenter"
|
|
'';
|
|
}
|