mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: kleopatra: Update to 24.05.2.
* gnu/packages/kde-pim.scm (kleopatra): Update to 24.05.2. [inputs]: Remove gpgme, qgpgme, and qtbase-5; add gpgme-1.23, kio, kstatusnotifieritem, mimetreeparser, and qgpgme-qt6-1.23. [arguments]: Set #:qtbase to qtbase; Use Gexps. Change-Id: Ibeb6a012db5458d911dad5342b1c45f795b72224
This commit is contained in:
parent
73986ee4cd
commit
dd8f920a23
1 changed files with 14 additions and 11 deletions
|
@ -1113,21 +1113,21 @@ (define-public kldap
|
|||
(define-public kleopatra
|
||||
(package
|
||||
(name "kleopatra")
|
||||
(version "23.04.3")
|
||||
(version "24.05.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||
"/src/kleopatra-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "0lcl20yihsa8dq0s24akp5z0290vh9nxjjjdwqk88nz8vmsr29i0"))))
|
||||
(base32 "1jm0x73g2mfk6fc2m3smray8c9wddkk785aizxvq0yi4v52wydxb"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
(list dbus extra-cmake-modules gnupg ;; TODO: Remove after gpgme uses fixed path
|
||||
kdoctools))
|
||||
(inputs
|
||||
(list boost
|
||||
gpgme
|
||||
gpgme-1.23
|
||||
kcmutils
|
||||
kcodecs
|
||||
kconfig
|
||||
|
@ -1136,26 +1136,29 @@ (define-public kleopatra
|
|||
kcrash
|
||||
kdbusaddons
|
||||
ki18n
|
||||
kio
|
||||
kiconthemes
|
||||
kitemmodels
|
||||
kmime
|
||||
knotifications
|
||||
ktextwidgets
|
||||
kstatusnotifieritem
|
||||
kwidgetsaddons
|
||||
kwindowsystem
|
||||
kxmlgui
|
||||
libassuan
|
||||
libkleo
|
||||
mimetreeparser
|
||||
breeze-icons ;; default icon set
|
||||
qgpgme
|
||||
qtbase-5))
|
||||
qgpgme-qt6-1.23))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "dbus-launch" "ctest")))))))
|
||||
(list #:qtbase qtbase
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "dbus-launch" "ctest")))))))
|
||||
(home-page "https://apps.kde.org/kleopatra/")
|
||||
(synopsis "Certificate Manager and Unified Crypto GUI")
|
||||
(description "Kleopatra is a certificate manager and a universal crypto
|
||||
|
|
Loading…
Reference in a new issue