gnu: Add lxqt-wallet.

* gnu/packages/lxqt.scm (lxqt-wallet): New variable.

Change-Id: I0e6990aa6d85f4a6b5e2f0d2c9f9e9df0334787f
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
Aaron Covrig 2025-03-07 16:36:08 -05:00 committed by Andreas Enge
parent 1bf1daac77
commit 9a87f0db38
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -12,6 +12,7 @@
;;; Copyright © 2020 André Batista <nandre@riseup.net>
;;; Copyright © 2021, 2022 Brendan Tildesley <mail@brendan.scot>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us@ieee.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -866,6 +867,30 @@ LXDE.")
image viewer.")
(license license:gpl2+)))
(define-public lxqt-wallet
(package
(name "lxqt-wallet")
(version "4.0.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/lxqt/lxqt_wallet")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0krs2x4ivx9n3q98v0q91f53q19rji3qhv5rl9xbhgylxralr135"))))
(build-system cmake-build-system)
(arguments '(#:tests? #f)) ;No tests
(inputs (list libsecret qtbase qttools kwallet))
(home-page "https://github.com/lxqt/lxqt_wallet")
(synopsis "Password storage for LXQt")
(description
"The lxqt_wallet project provides secure storage of information that
can be presented in key-values pairs, such as passwords associated to user
names.")
(license license:bsd-2)))
(define-public obconf-qt
(package
(name "obconf-qt")