This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6ae7acb2d0 gnu: vinagre: Improve style.
6ae7acb2d0 is described below

commit 6ae7acb2d0a74118421e422bb99c4aeed3f35a2a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jul 19 11:53:31 2025 +0100

    gnu: vinagre: Improve style.
    
    * gnu/packages/gnome.scm (vinagre): Use G-expressions, remove traling #t
      from lambdas, use list style.
      [native-inputs]: Remove lables.
    
    Change-Id: Ia9b33b605930fda497d2018acb862034d49ba2a6
---
 gnu/packages/gnome.scm | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 54555025aa..86ed1e5870 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4817,28 +4817,28 @@ editors, IDEs, etc.")
     (arguments
      ;; Disable -Werror and such, to avoid build failures on compilation
      ;; warnings.
-     '(#:configure-flags `("--enable-compile-warnings=minimum"
-                           ,(string-append "CFLAGS=-O2 -g -fcommon "
-                                           "-Wno-implicit-int "
-                                           "-Wno-incompatible-pointer-types"))
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'install 'skip-gtk-update-icon-cache
-           (lambda _
-             ;; Don't create 'icon-theme.cache'
-             (substitute* (find-files "." "^Makefile$")
-               (("gtk-update-icon-cache") (which "true")))
-             #t))
-         (add-after 'unpack 'patch-configure
-           (lambda _
-             (substitute* "configure"
-               (("freerdp") "freerdp2"))
-             #t)))))
+     (list
+      #:configure-flags
+      #~(list "--enable-compile-warnings=minimum"
+              (string-append "CFLAGS=-O2 -g -fcommon "
+                             "-Wno-implicit-int "
+                             "-Wno-incompatible-pointer-types"))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'install 'skip-gtk-update-icon-cache
+            (lambda _
+              ;; Don't create 'icon-theme.cache'
+              (substitute* (find-files "." "^Makefile$")
+                (("gtk-update-icon-cache") (which "true")))))
+          (add-after 'unpack 'patch-configure
+            (lambda _
+              (substitute* "configure"
+                (("freerdp") "freerdp2")))))))
     (native-inputs
-     `(("pkg-config" ,pkg-config)
-       ("intltool" ,intltool)
-       ("itstool" ,itstool)
-       ("glib-bin" ,glib "bin")))                 ;for glib-compile-schemas
+     (list pkg-config
+           intltool
+           itstool
+           (list glib "bin")))                 ;for glib-compile-schemas
     (inputs
      (list libxml2
            gtk-vnc

Reply via email to