From 9a87f0db3803f47db18ce7e2012a52030e2f071e Mon Sep 17 00:00:00 2001 From: Aaron Covrig Date: Fri, 7 Mar 2025 16:36:08 -0500 Subject: [PATCH] gnu: Add lxqt-wallet. * gnu/packages/lxqt.scm (lxqt-wallet): New variable. Change-Id: I0e6990aa6d85f4a6b5e2f0d2c9f9e9df0334787f Signed-off-by: Andreas Enge --- gnu/packages/lxqt.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index 45db8bdc6ec..2662235679d 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2020 André Batista ;;; Copyright © 2021, 2022 Brendan Tildesley ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2024 Aaron Covrig ;;; ;;; 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")