iyzsong pushed a commit to branch kde-updates
in repository guix.

commit dc341648d4bca0adbae9514ae26ec7ab7cbd2a66
Author: Zheng Junjie <[email protected]>
AuthorDate: Fri Jul 14 16:16:03 2023 +0800

    gnu: kdeconnect: Use G-expressions.
    
    * gnu/packages/kde.scm (kdeconnect)[arguments]:
    Rewrite as G-expressions.
    
    Signed-off-by: 宋文武 <[email protected]>
---
 gnu/packages/kde.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 1ef2a6b17f..437744cc06 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -936,11 +936,11 @@ different notification systems.")
          "1gcmqqj752h3lmcpvc7cm6k6bpb158ha7i5ysp0kqvf8cmpi5ydz"))))
     (build-system qt-build-system)
     (arguments
-     `(#:configure-flags '("-DBUILD_TESTING=ON"
-                           "-DKDE_INSTALL_LIBEXECDIR=libexec"
-                           ;; So kdeconnect.so isn't installed to lib/plugins
-                           "-DPLUGIN_INSTALL_DIR=lib/qt5/plugins")
-       #:tests? #f)) ; tests fail hard in our build environment
+     (list #:configure-flags #~'("-DBUILD_TESTING=ON"
+                                 "-DKDE_INSTALL_LIBEXECDIR=libexec"
+                                 ;; So kdeconnect.so isn't installed to 
lib/plugins
+                                 "-DPLUGIN_INSTALL_DIR=lib/qt5/plugins")
+           #:tests? #f)) ; tests fail hard in our build environment
     (native-inputs
      (list extra-cmake-modules
            kdoctools

Reply via email to