This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new fc8e3ea176 gnu: Add klassy.
fc8e3ea176 is described below
commit fc8e3ea17603cb807051cab2234cb09d71a2dc5b
Author: Sergio Pastor Pérez <[email protected]>
AuthorDate: Tue Jul 22 11:32:26 2025 +0200
gnu: Add klassy.
* gnu/packages/kde-plasma.scm (klassy): New variable.
Change-Id: I7782d30d6f9580070ad03e579148f3088e069823
Signed-off-by: Zheng Junjie <[email protected]>
---
gnu/packages/kde-plasma.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 097207a089..8c6e858ccf 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -440,6 +440,53 @@ concept.")
(home-page "https://invent.kde.org/plasma/kactivitymanagerd")
(license (list license:gpl2 license:gpl3))))
+(define-public klassy
+ (package
+ (name "klassy")
+ (version "6.4.breeze6.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/paulmcauley/klassy")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0hrr8kg988qzpk8mccc8kk9lah9b89wx0h47s1981wvb9bci5dpr"))))
+ (build-system qt-build-system)
+ (native-inputs (list extra-cmake-modules))
+ (inputs (list qtsvg
+ kirigami
+ qtdeclarative
+ kconfig
+ kconfigwidgets
+ kcoreaddons
+ kcolorscheme
+ kdecoration
+ kcmutils
+ kguiaddons
+ kiconthemes
+ kwindowsystem
+ ki18n))
+ (arguments
+ (list
+ #:qtbase qtbase
+ #:tests? #f ; No tests.
+ #:configure-flags
+ #~(list "-DBUILD_QT5=OFF")))
+ (home-page "https://github.com/paulmcauley/klassy")
+ (synopsis "Customizable window decoration for the KDE Plasma desktop")
+ (description
+ "Klassy is a highly customizable binary Window Decoration,
+Application Style and Global Theme plugin for recent versions of the KDE Plasma
+desktop.")
+ (license (list license:bsd-3
+ license:cc0
+ license:expat
+ license:gpl2
+ license:gpl2+
+ license:gpl3))))
+
(define-public krdp
(package
(name "krdp")