gnu: Add kcalutils.
* gnu/packages/kde-pim.scm (kcalutils): New variable.
This commit is contained in:
parent
962b288ad5
commit
68b1d81d53
1 changed files with 39 additions and 0 deletions
|
@ -111,6 +111,45 @@ This package contains the Akonadi PIM storage server and associated
|
|||
programs.")
|
||||
(license license:fdl1.2+)))
|
||||
|
||||
(define-public kcalutils
|
||||
(package
|
||||
(name "kcalutils")
|
||||
(version "19.08.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/applications/" version
|
||||
"/src/kcalutils-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1nlkik4qiciyh1slgpis3n5h9pks2ygdba9yq4s16nnmip4l45w2"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||
("libxml2" ,libxml2))) ;; xmllint required for tests
|
||||
(inputs
|
||||
`(("grantlee" ,grantlee)
|
||||
("kcalendarcore" ,kcalendarcore)
|
||||
("kcodecs" ,kcodecs)
|
||||
("kconfig" ,kconfig)
|
||||
("kconfigwidgets" ,kconfigwidgets)
|
||||
("kcoreaddons" ,kcoreaddons)
|
||||
("ki18n" ,ki18n)
|
||||
("kiconthemes" ,kiconthemes)
|
||||
("kidentitymanagement" ,kidentitymanagement)
|
||||
("kpimtextedit" ,kpimtextedit)
|
||||
("ktextwidgets" ,ktextwidgets)
|
||||
("kwidgetsaddons" ,kwidgetsaddons)
|
||||
("oxygen-icons" ,oxygen-icons) ; default icon set, required for tests
|
||||
("qtbase" ,qtbase)))
|
||||
(arguments
|
||||
`(#:tests? #f)) ;; TODO: seem to pull in some wrong theme
|
||||
(home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
|
||||
(synopsis "Library with utility functions for the handling of calendar
|
||||
data")
|
||||
(description "This library provides a utility and user interface
|
||||
functions for accessing calendar data using the kcalcore API.")
|
||||
(license license:lgpl2.0+)))
|
||||
|
||||
(define-public kmbox
|
||||
(package
|
||||
(name "kmbox")
|
||||
|
|
Reference in a new issue