gnu: Add khelpcenter.
* gnu/packages/kde-systemtools.scm (khelpcenter): New variable.
This commit is contained in:
parent
a4317df4c8
commit
05ddf22c44
1 changed files with 45 additions and 1 deletions
|
@ -26,7 +26,9 @@ (define-module (gnu packages kde-systemtools)
|
|||
#:use-module (gnu packages kde)
|
||||
#:use-module (gnu packages kde-frameworks)
|
||||
#:use-module (gnu packages qt)
|
||||
#:use-module (gnu packages ruby))
|
||||
#:use-module (gnu packages ruby)
|
||||
#:use-module (gnu packages search)
|
||||
#:use-module (gnu packages xml))
|
||||
|
||||
(define-public dolphin
|
||||
(package
|
||||
|
@ -114,3 +116,45 @@ (define-public dolphin-plugins
|
|||
(description "This package contains plugins that offer integration in
|
||||
Dolphin with the version control systems: Bzr, Git, Mercurial, Subversion.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public khelpcenter
|
||||
(package
|
||||
(name "khelpcenter")
|
||||
(version "19.08.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/applications/" version
|
||||
"/src/khelpcenter-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "0ympq1qm5h14mw18wry7l02ndg1f5kddwkf5bliip6vk2vxiff50"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||
("kdoctools" ,kdoctools)))
|
||||
(inputs
|
||||
`(("grantlee" ,grantlee)
|
||||
("karchive" ,karchive)
|
||||
("kbookmarks" ,kbookmarks)
|
||||
("kcodecs" ,kcodecs)
|
||||
("kconfig" ,kconfig)
|
||||
("kcoreaddons" ,kcoreaddons)
|
||||
("kdbusaddons" ,kdbusaddons)
|
||||
("khtml" ,khtml)
|
||||
("ki18n" ,ki18n)
|
||||
("kinit" ,kinit)
|
||||
("kio" ,kio)
|
||||
("kjs" ,kjs)
|
||||
("kparts" ,kparts)
|
||||
("kservice" ,kservice)
|
||||
("kwindowsystem" ,kwindowsystem)
|
||||
("libxml2" ,libxml2)
|
||||
("oxygen-icons" ,oxygen-icons) ;; default icon set
|
||||
("qtbase" ,qtbase)
|
||||
("xapian" ,xapian)))
|
||||
(arguments
|
||||
`(#:tests? #f)) ;; 1/1 test fails
|
||||
(home-page "https://kde.org/applications/system/org.kde.Help")
|
||||
(synopsis "KDE documentation viewer")
|
||||
(description "KDE documentation viewer")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue