nixpkgs/pkgs/applications/kde/khelpcenter.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
622 B
Nix
Raw Normal View History

{ lib, mkDerivation
, extra-cmake-modules, kdoctools
, grantlee, kcmutils, kconfig, kcoreaddons, kdbusaddons, ki18n
, kinit, khtml, kservice, xapian
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "khelpcenter";
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 13:50:10 +00:00
buildInputs = [
grantlee kcmutils kconfig kcoreaddons kdbusaddons khtml
2017-06-21 13:50:10 +00:00
ki18n kinit kservice xapian
2017-05-16 15:56:41 +00:00
];
preFixup = ''
qtWrapperArgs+=(
--prefix MANPATH : /nix/var/nix/profiles/system/sw/share/man
)
'';
meta = with lib; {
homepage = "https://apps.kde.org/help/";
description = "Help center";
license = licenses.gpl2Plus;
};
}