guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#64798] [PATCH 005/209] gnu: attica: use G-expressions.


From: Zheng Junjie
Subject: [bug#64798] [PATCH 005/209] gnu: attica: use G-expressions.
Date: Sun, 23 Jul 2023 16:08:40 +0800

* gnu/packages/kde-frameworks.scm (attica)[arguments]:
Rewrite as G-expressions.
---
 gnu/packages/kde-frameworks.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index d654fcc621..206ce38d17 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -305,13 +305,14 @@ (define-public attica
                 "15didd7llqamp9wbvrynnf9cap2dqmwr51mz0pcjdk0iqs6ym4qq"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'disable-network-tests
-           (lambda _
-             ;; These tests require network access.
-             (substitute* "autotests/CMakeLists.txt"
-               ((".*providertest.cpp") "")))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'disable-network-tests
+            (lambda _
+              ;; These tests require network access.
+              (substitute* "autotests/CMakeLists.txt"
+                ((".*providertest.cpp") "")))))))
     (native-inputs
      (list extra-cmake-modules))
     (inputs
-- 
2.41.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]