3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/plasma-5.4/khelpcenter.nix

36 lines
475 B
Nix
Raw Normal View History

{ plasmaPackage
2015-09-27 16:03:00 +01:00
, extra-cmake-modules
, kdoctools
, kconfig
, kcoreaddons
, kdbusaddons
, ki18n
, kinit
, kcmutils
, kdelibs4support
, khtml
, kservice
}:
plasmaPackage {
2015-09-27 16:03:00 +01:00
name = "khelpcenter";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
kconfig
kcoreaddons
kdbusaddons
ki18n
kinit
kcmutils
kdelibs4support
khtml
kservice
];
postInstall = ''
wrapKDEProgram "$out/bin/khelpcenter"
'';
}