diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 20:41:46 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:19 +0800 |
commit | 6955cba8bd76fdf900d44d7d09f5a7101af4e79a (patch) | |
tree | f135300e5e712635c072fadcbfb505319d5c168d | |
parent | 4cc6f446c892533a9a9d5942deed5954b639e10f (diff) | |
download | guix-6955cba8bd76fdf900d44d7d09f5a7101af4e79a.tar.gz guix-6955cba8bd76fdf900d44d7d09f5a7101af4e79a.zip |
gnu: qtkeychain: Update to 0.14.3.
* gnu/packages/qt.scm (qtkeychain): Update to 0.14.3.
Change-Id: Id67ee55220d95afa22d65fdcf10dd69c8b6dc9b4
-rw-r--r-- | gnu/packages/qt.scm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 16ce1fc3c4..1f1c6ec4a3 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -4331,17 +4331,17 @@ This package provides the Python bindings."))) (define-public qtkeychain (package (name "qtkeychain") - (version "0.13.2") + (version "0.14.3") (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankosterfeld/qtkeychain/") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1zk6r2vc1q48qs7mw2h47bpgrfbb9r7lf9cwq4sb1a4nls87zznk")))) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankosterfeld/qtkeychain/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1li40ka0g8v2f1q01gpabpx264wmk5zrv2961sg3byj70kf9fmgv")))) (build-system cmake-build-system) (native-inputs (list pkg-config qttools-5)) @@ -4354,12 +4354,12 @@ This package provides the Python bindings."))) (add-before 'configure 'set-qt-trans-dir (lambda _ (substitute* "CMakeLists.txt" - (("\\$\\{qt_translations_dir\\}") - "${CMAKE_INSTALL_PREFIX}/share/qt5/translations"))))))) + (("\\$\\{qt_translations_dir\\}") + "${CMAKE_INSTALL_PREFIX}/share/qt5/translations"))))))) (home-page "https://github.com/frankosterfeld/qtkeychain") (synopsis "Qt API to store passwords") (description - "QtKeychain is a Qt library to store passwords and other secret data + "QtKeychain is a Qt library to store passwords and other secret data securely. It will not store any data unencrypted unless explicitly requested.") (license license:bsd-3))) |