nixpkgs/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix

21 lines
480 B
Nix
Raw Normal View History

2016-04-21 17:01:22 +01:00
{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support
, khtml, kservice, makeQtWrapper
}:
plasmaPackage {
name = "khelpcenter";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
makeQtWrapper
];
propagatedBuildInputs = [
kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit kcmutils
kservice
2016-04-21 17:01:22 +01:00
];
postInstall = ''
wrapQtProgram "$out/bin/khelpcenter"
'';
}