guix_mirror_bot pushed a commit to branch kde-team
in repository guix.
commit 54bad711a5b3b289b78cc9c7ba818cc6b1a4a92d
Author: Zheng Junjie <[email protected]>
AuthorDate: Mon Jul 28 14:38:35 2025 +0800
gnu: kscreen: Update to 6.4.3.
* gnu/packages/kde-plasma.scm (kscreen): Update to 6.4.3.
[inputs]: Add kcrash and qtwayland.
[native-inputs]: Add wayland, wayland-protocols, and qtwayland.
Change-Id: I61da6e9699e47980b27cd12c0497838ddcea3288
---
gnu/packages/kde-plasma.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 19437b8a95..00dc1cb0d5 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -1078,7 +1078,7 @@ PipeWire in Qt projects.")
(define-public kscreen
(package
(name "kscreen")
- (version "6.3.6")
+ (version "6.4.3")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/plasma/"
@@ -1086,12 +1086,15 @@ PipeWire in Qt projects.")
".tar.xz"))
(sha256
(base32
- "13aibq9zdfk8msnv05f9ny6zlf0hxm9lvl5612csx6gig7p9nwy1"))))
+ "1ab0z87312vb25acin4w273q1pi5yppzlhgbxk7r6qhkl8r71vrp"))))
(build-system cmake-build-system)
(arguments
;; TODO: All tests fail
(list #:tests? #f))
- (native-inputs (list extra-cmake-modules qttools pkg-config))
+ (native-inputs (list extra-cmake-modules qttools pkg-config
+ wayland
+ wayland-protocols
+ qtwayland))
(inputs (list kconfig
kdbusaddons
kdeclarative
@@ -1100,6 +1103,7 @@ PipeWire in Qt projects.")
kwindowsystem
kiconthemes
kcoreaddons
+ kcrash
kcmutils
kxmlgui
layer-shell-qt
@@ -1110,6 +1114,7 @@ PipeWire in Qt projects.")
plasma-wayland-protocols
qtsensors
qtbase
+ qtwayland
xcb-util
libplasma))
(home-page "https://invent.kde.org/plasma/kscreen")