guix_mirror_bot pushed a commit to branch core-packages-team
in repository guix.

commit 94dfaf98238aad2e5b5d5e0feed18826ff396e9e
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 055919be19..323a2dd507 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

Reply via email to