guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 714c59c232b4f9189787c1df0b8f67818323e3b2
Author: Sughosha <[email protected]>
AuthorDate: Thu Mar 5 15:50:59 2026 +0530
gnu: Add plasma-thunderbolt.
* gnu/packages/kde-plasma.scm (plasma-thunderbolt): New variable.
Change-Id: Id2ec1db5885b61cb188f5e83aa011a7fa402ded5
---
gnu/packages/kde-plasma.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 3a29763e34..f6912631bd 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -2610,6 +2610,46 @@ PulseAudio.")
adding, modifying and removing contacts.")
(license license:lgpl2.0+)))
+(define-public plasma-thunderbolt
+ (package
+ (name "plasma-thunderbolt")
+ (version "6.5.5")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/plasma/"
+ version "/" name "-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "0ac66xxkzvw6k9dy39klxfnxkgx47qzpqhy2dj49khyi2ckq0yzg"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ (setenv "HOME" (getcwd))))
+ (replace 'check
+ (lambda* (#:key tests? test-exclude #:allow-other-keys)
+ (when tests?
+ (invoke "dbus-launch" "ctest" "--output-on-failure"
+ "-E" test-exclude)))))))
+ (native-inputs
+ (list dbus extra-cmake-modules))
+ (inputs
+ (list bolt
+ kcmutils
+ kcoreaddons
+ kdbusaddons
+ ki18n
+ knotifications))
+ (home-page "https://invent.kde.org/plasma/plasma-thunderbolt")
+ (synopsis "Plasma integration for controlling Thunderbolt devices")
+ (description "This package provides a Plasma Sytem Settings module and a
+KDED module to handle authorization of Thunderbolt devices.")
+ (license license:gpl3+)))
+
(define-public plasma-vault
(package
(name "plasma-vault")