mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: Add khealthcertificate.
* gnu/packages/kde-pim.scm (khealthcertificate): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
cc1ff122d7
commit
beb859d52b
1 changed files with 34 additions and 0 deletions
|
@ -895,6 +895,40 @@ (define-public kgpg
|
|||
cryptography to the contents of the clipboard.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public khealthcertificate
|
||||
(package
|
||||
(name "khealthcertificate")
|
||||
(version "22.09")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/plasma-mobile/"
|
||||
(version-major+minor version)
|
||||
"/khealthcertificate-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16vkjpyxwx34pvdpnci0l6mx2bdjialiscjvbdx53xbsq9ff701k"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "ctest" "-E"
|
||||
"(icaovdsparsertest|nlcoronacheckparsertest)")))))))
|
||||
(native-inputs (list extra-cmake-modules pkg-config))
|
||||
(inputs (list karchive
|
||||
kcodecs
|
||||
ki18n
|
||||
openssl
|
||||
qtdeclarative-5
|
||||
zlib))
|
||||
(home-page "https://api.kde.org/khealthcertificate/html/index.html")
|
||||
(synopsis "Digital vaccination and recovery certificate library")
|
||||
(description
|
||||
"This package provides a library for arsing of digital vaccination,
|
||||
test and recovery certificates.")
|
||||
(license license:lgpl2.0)))
|
||||
|
||||
(define-public kidentitymanagement
|
||||
(package
|
||||
(name "kidentitymanagement")
|
||||
|
|
Loading…
Reference in a new issue