diff options
| author | Sergio Pastor Pérez <sergio.pastorperez@gmail.com> | 2025-07-22 11:32:26 +0200 |
|---|---|---|
| committer | Zheng Junjie <z572@z572.online> | 2025-08-13 12:04:37 +0800 |
| commit | fc8e3ea17603cb807051cab2234cb09d71a2dc5b (patch) | |
| tree | ecf044a23f7033540d3df473140f79ab5affe745 | |
| parent | 8a1f56cf8710fc142a2f8ef2e52be82e8aa9f53e (diff) | |
gnu: Add klassy.
* gnu/packages/kde-plasma.scm (klassy): New variable.
Change-Id: I7782d30d6f9580070ad03e579148f3088e069823
Signed-off-by: Zheng Junjie <z572@z572.online>
| -rw-r--r-- | gnu/packages/kde-plasma.scm | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 097207a0893..8c6e858ccf8 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") |
