This is an automated email from the git hooks/post-receive script.
iyzsong pushed a commit to branch qt-team
in repository guix.
The following commit(s) were added to refs/heads/qt-team by this push:
new 1280f92c08 gnu: extra-cmake-modules: Build with Qt 6.
1280f92c08 is described below
commit 1280f92c0888b43c8e466000ea289f9c5d177f2d
Author: 宋文武 <[email protected]>
AuthorDate: Tue May 6 21:14:45 2025 +0800
gnu: extra-cmake-modules: Build with Qt 6.
* gnu/packages/kde-frameworks.scm (extra-cmake-modules) [native-inputs]:
Remove qtbase-5. Add qtbase and python-minimal.
[arguments]: Add "-DQT_MAJOR_VERSION=6" to configure flags.
Authored-by: Vinicius Monego <[email protected]>
Change-Id: I526df2a30c66217440c237fd5ba7dd685b7cb8d9
---
gnu/packages/kde-frameworks.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 759f88a47d..48c3e6ac11 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -121,9 +121,10 @@
(if (and (not (%current-target-system))
(string=? (%current-system) "armhf-linux"))
'()
- (list qtbase-5))) ;for tests (needs qmake)
+ (list qtbase python-minimal))) ;for tests (needs qmake)
(arguments
(list
+ #:configure-flags #~'("-DQT_MAJOR_VERSION=6")
#:tests? (and (not (%current-target-system))
(not (null? (package-native-inputs this-package))))
#:phases