guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a7aad9da6f4a42a0684eb7b2480484c9ab87c4e0
Author: Carlos Durán Domínguez <[email protected]>
AuthorDate: Mon Feb 23 17:55:46 2026 +0100

    gnu: Add qlementine.
    
    * gnu/packages/qt.scm (qlementine): New variable.
    
    Change-Id: I174638d9663cbfbe984e45b7f32df68b757509b7
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/qt.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index a8d22f4288..e554cd0863 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -187,6 +187,29 @@ of C++20 coroutines in connection with certain 
asynchronous Qt actions.")
               (replace "qtwebsockets" qtwebsockets)
               (append libxkbcommon)))))
 
+(define-public qlementine
+  (package
+    (name "qlementine")
+    (version "1.4.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/oclero/qlementine";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1cjch1jhlb67hcfgzf2vv5f9zlawr8ngl0gc43scplxdfpv3wda0"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:tests? #f)) ;no tests
+    (inputs (list qtbase qtsvg))
+    (synopsis "Modern QStyle for desktop Qt6 applications")
+    (description "Qlementine is a modern QStyle for desktop Qt6 applications.")
+    (home-page "https://github.com/oclero/qlementine";)
+    (license license:expat)))
+
 (define-public qmdnsengine
   ;; Used as submodule in https://github.com/moonlight-stream/moonlight-qt
   (let ((commit "b7a5a9f225d5e14b39f9fd1f905c4f505cf2ee99")

Reply via email to