mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add kidentitymanagement.
* gnu/packages/kde-pim.scm (kidentitymanagement): New variable.
This commit is contained in:
parent
8c71fd4363
commit
0a0df84f0b
1 changed files with 39 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue