summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Covrig <aaron.covrig.us@ieee.org>2025-03-07 16:36:08 -0500
committerAndreas Enge <andreas@enge.fr>2025-03-15 14:12:45 +0100
commit9a87f0db3803f47db18ce7e2012a52030e2f071e (patch)
tree8fbde15b4d6f8e1ab5bb384ca59be5dc5bc5bbe4
parent1bf1daac77316898d716c27968e4100d8ce464fb (diff)
gnu: Add lxqt-wallet.
* gnu/packages/lxqt.scm (lxqt-wallet): New variable. Change-Id: I0e6990aa6d85f4a6b5e2f0d2c9f9e9df0334787f Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--gnu/packages/lxqt.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index 45db8bdc6e..2662235679 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -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")