diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-08 01:08:59 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:23 +0800 |
commit | 631aff54f9911a8379917a7853501a1b8c528661 (patch) | |
tree | d62eef5fe822efb104a6714ef5520affc243412c /gnu/packages/kde-pim.scm | |
parent | a7566de0a592f0e0a7f542a4ec00457d4fd34151 (diff) | |
download | guix-631aff54f9911a8379917a7853501a1b8c528661.tar.gz guix-631aff54f9911a8379917a7853501a1b8c528661.zip |
gnu: khealthcertificate: Update to 24.05.2.
* gnu/packages/kde-pim.scm (khealthcertificate): Update to 24.05.2.
[source]: Update uri.
[inputs]: Remove qtdeclarative-5; add qtdeclarative.
[arguments]: Set #:qtbase to qtbase.
Change-Id: I618ad2b103a27ba13747604072aa9b1e9673a61d
Diffstat (limited to 'gnu/packages/kde-pim.scm')
-rw-r--r-- | gnu/packages/kde-pim.scm | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm index 8e214c6fcd..d45c1b8bee 100644 --- a/gnu/packages/kde-pim.scm +++ b/gnu/packages/kde-pim.scm @@ -931,31 +931,33 @@ cryptography to the contents of the clipboard.") (define-public khealthcertificate (package (name "khealthcertificate") - (version "23.01.0") + (version "24.05.2") (source (origin (method url-fetch) - (uri (string-append "mirror://kde/stable/plasma-mobile/" version - "/khealthcertificate-" version ".tar.xz")) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/khealthcertificate-" version ".tar.xz")) (sha256 (base32 - "193agd3jg029vcq1h5hdg3gw6zgqcmszl6ffcrid0ajbbiic4pbm")))) + "0600rz72dd3x7wwj82cyixnch3v0m4gva5kgf3y6rzjzlqjdpx57")))) (build-system qt-build-system) (arguments - (list #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs tests? #:allow-other-keys) - (when tests? - (setenv "TZDIR" - (search-input-directory inputs "share/zoneinfo")) - (invoke "ctest" "-E" - "(icaovdsparsertest|eudgcparsertest)"))))))) + (list + #:qtbase qtbase + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs tests? #:allow-other-keys) + (when tests? + (setenv "TZDIR" + (search-input-directory inputs "share/zoneinfo")) + (invoke "ctest" "-E" + "(icaovdsparsertest|eudgcparsertest)"))))))) (native-inputs (list extra-cmake-modules pkg-config tzdata-for-tests)) (inputs (list karchive kcodecs ki18n openssl - qtdeclarative-5 + qtdeclarative zlib)) (home-page "https://api.kde.org/khealthcertificate/html/index.html") (synopsis "Digital vaccination and recovery certificate library") |