z572 pushed a commit to branch kde-team
in repository guix.

commit 863ae2235d7aa91b44b091442c77f22e48712764
Author: Zheng Junjie <[email protected]>
AuthorDate: Sun Jan 14 12:34:08 2024 +0800

    gnu: Add kcolorscheme.
    
    * gnu/packages/kde-frameworks.scm (kcolorscheme): New variable.
    
    Change-Id: I88ab08e681587f9bce1fc5c29ac0dc1e98efd061
---
 gnu/packages/kde-frameworks.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 27c651ccd1..a842a2fc85 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -725,6 +725,36 @@ menu which lets you select a color.  The popup features a 
color dialog button
 which can be used to add custom colors to the popup menu.")
     (license license:lgpl3+)))
 
+(define-public kcolorscheme
+  (package
+    (name "kcolorscheme")
+    (version "6.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+
+              (sha256
+               (base32
+                "0sh3bdy0zpm7w59qbwdyiygs9p1b76001awd0v20fs3079zsh2n3"))))
+    (build-system qt-build-system)
+    (native-inputs (list extra-cmake-modules))
+    (inputs (list kguiaddons-6 ki18n-6
+                  qtdeclarative))
+    (propagated-inputs (list kconfig-6))
+    (arguments (list #:qtbase qtbase))
+    (home-page "https://community.kde.org/Frameworks";)
+    (synopsis "Classes to read and interact with KColorScheme")
+    (description "This package provide a Classes to read and interact with
+KColorScheme.")
+    (license (list license:cc0
+                   license:lgpl2.0+
+                   license:lgpl2.1
+                   license:bsd-2
+                   license:lgpl3))))
+
 (define-public kconfig-6
   (package
     (name "kconfig")

Reply via email to