diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-12-05 20:24:07 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-02-03 14:27:23 +0100 |
commit | 0a0df84f0b2d29b79e84e5f508a801c7b011cef6 (patch) | |
tree | bf6dd4e5f8ea294fa1036488b6f10283070cddad /gnu | |
parent | 8c71fd436347f5363e43387c4e3dc44f3c578d6e (diff) | |
download | patches-0a0df84f0b2d29b79e84e5f508a801c7b011cef6.tar patches-0a0df84f0b2d29b79e84e5f508a801c7b011cef6.tar.gz |
gnu: Add kidentitymanagement.
* gnu/packages/kde-pim.scm (kidentitymanagement): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-pim.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm index e5744076c9..b0bd75685e 100644 --- a/gnu/packages/kde-pim.scm +++ b/gnu/packages/kde-pim.scm @@ -150,6 +150,45 @@ data") 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") |