guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8fff26cd610d4310aa80af0be6c065e3f370a3d9
Author: Carlos Durán Domínguez <[email protected]>
AuthorDate: Mon Feb 23 23:34:18 2026 +0100
gnu: Add qlementine-icons.
* gnu/packages/qt.scm (qlementine-icons): New variable.
Change-Id: I8873c1c17c430f62a1573ba25a9c8534bd4512fb
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/qt.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index e554cd0863..953b9205a7 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -210,6 +210,32 @@ of C++20 coroutines in connection with certain
asynchronous Qt actions.")
(home-page "https://github.com/oclero/qlementine")
(license license:expat)))
+(define-public qlementine-icons
+ (package
+ (name "qlementine-icons")
+ (version "1.14.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/oclero/qlementine-icons")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "187h8yvykah7xangbds9a0860p9p2fyf8v54y0ga2a3ygc7y5mfv"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ;no tests
+ (inputs (list qtbase qtsvg))
+ (synopsis "Modern icon set for desktop Qt applications")
+ (description
+ "Qlementine Icons is a modern, vector, elegant, free, and open-source icon
+library designed for use with a C++ library that enhances the appearance of
+your QtWidgets application.")
+ (home-page "https://oclero.github.io/qlementine-icons/")
+ (license license:expat)))
+
(define-public qmdnsengine
;; Used as submodule in https://github.com/moonlight-stream/moonlight-qt
(let ((commit "b7a5a9f225d5e14b39f9fd1f905c4f505cf2ee99")