gnu: Add kidentitymanagement.

* gnu/packages/kde-pim.scm (kidentitymanagement): New variable.
This commit is contained in:
Hartmut Goebel 2019-12-05 20:24:07 +01:00
parent 8c71fd4363
commit 0a0df84f0b
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -150,6 +150,45 @@ (define-public kcalutils
functions for accessing calendar data using the kcalcore API.")
(license license:lgpl2.0+)))
(define-public kidentitymanagement
(package
(name "kidentitymanagement")
(version "19.08.3")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/applications/" version
"/src/kidentitymanagement-" version ".tar.xz"))
(sha256
(base32 "0dqz49sp5hq44590rrxav8688aqlzsww4q4n55ksfy13nk9i5mbf"))))
(build-system qt-build-system)
(native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules)))
(inputs
`(("kcodecs" ,kcodecs)
("kcompletion" ,kcompletion)
("kconfig" ,kconfig)
("kcoreaddons" ,kcoreaddons)
("kemoticons" ,kemoticons)
("kiconthemes" ,kiconthemes)
("kio" ,kio)
("kpimtextedit" ,kpimtextedit)
("ktextwidgets" ,ktextwidgets)
("kxmlgui" ,kxmlgui)
("qtbase" ,qtbase)))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'set-home
(lambda _
(setenv "HOME" "/tmp/dummy-home") ;; FIXME: what is this?
#t)))))
(home-page "https://kontact.kde.org/")
(synopsis "Library for shared identities between mail applications")
(description "Library for shared identities between mail applications.")
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
(define-public kmbox
(package
(name "kmbox")