guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a33bdeb6e1bcdd09cd402730755dafe56a34c6f0
Author: ampinga <[email protected]>
AuthorDate: Sun Sep 6 23:40:52 2026 +0300

    gnu: libadwaita: Modernize the package style.
    
    * gnu/packages/gnome.scm (libadwaita)[arguments]: Convert to list of
    G-Expressions.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/gnome.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index e86ba6eb6b3..204cf1d4931 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -13782,13 +13782,14 @@ Document Analysis and Recognition program.")
                 "074j59bz5zgnb7grw3clpwyxickw9268k6fj0980bw8gdxxvfayh"))))
     (build-system meson-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'pre-check
-           (lambda* (#:key inputs #:allow-other-keys)
-             ;; Tests require a running X server.
-             (system "Xvfb :1 &")
-             (setenv "DISPLAY" ":1"))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'check 'pre-check
+            (lambda* (#:key inputs #:allow-other-keys)
+              ;; Tests require a running X server.
+              (system "Xvfb :1 &")
+              (setenv "DISPLAY" ":1"))))))
     (native-inputs
      (list gettext-minimal
            `(,glib "bin")

Reply via email to