guix_mirror_bot pushed a commit to branch misc-world-rebuild
in repository guix.

commit 246a855e5b5f3986cf4159243dbb02d8e82e7e08
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Apr 14 02:03:13 2026 +0200

    gnu: avahi: Drop input labels.
    
    * gnu/packages/avahi.scm (avahi)[inputs, native-inputs]:
      Drop input labels.
    
    Change-Id: I73110124f2d60ede7b2279ab878c68ca05dbb9c1
    Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
 gnu/packages/avahi.scm | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/avahi.scm b/gnu/packages/avahi.scm
index 79e1866b65..1e6bd358ea 100644
--- a/gnu/packages/avahi.scm
+++ b/gnu/packages/avahi.scm
@@ -98,24 +98,24 @@
                  (cut patch-shebang <> path)
                  (find-files (string-append #$output "/etc/avahi"))))))))
     (inputs
-     `(("bash-minimal" ,bash-minimal)
-       ("dbus" ,dbus)
-       ("expat" ,expat)
-       ("gdbm" ,gdbm)
-       ("glib" ,glib)
-       ;; Do not use libcap when cross-compiling since it's not quite
-       ;; cross-compilable; and use it only for supported systems.
-       ,@(if (and (not (%current-target-system))
-                  (member (%current-system)
-                          (package-supported-systems libcap)))
-             `(("libcap" ,libcap))   ;to enable chroot support in avahi-daemon
-             '())
-       ("libdaemon" ,libdaemon)
-       ("libevent" ,libevent)))
+     (cons* bash-minimal
+            dbus
+            expat
+            gdbm
+            glib
+            libdaemon
+            libevent
+            ;; Do not use libcap when cross-compiling since it's not quite
+            ;; cross-compilable; and use it only for supported systems.
+            (if (and (not (%current-target-system))
+                     (member (%current-system)
+                             (package-supported-systems libcap)))
+                (list libcap)        ;to enable chroot support in avahi-daemon
+                (list))))
     (native-inputs
-     `(("gettext" ,gettext-minimal)
-       ("glib" ,glib "bin")
-       ("pkg-config" ,pkg-config)))
+     (list gettext-minimal
+           (list glib "bin")
+           pkg-config))
     (synopsis "Implementation of mDNS/DNS-SD protocols")
     (description
      "Avahi is a system which facilitates service discovery on a local

Reply via email to