apteryx pushed a commit to branch master
in repository guix.

commit 83f5e5c17f2fe0d0ca7a951cea692ff27a018e34
Author: Zheng Junjie <[email protected]>
AuthorDate: Mon Apr 1 00:45:19 2024 +0800

    gnu: dbus-for-jami: Use Gexp.
    
    This is a follow-up to 26485fc5750d2e067c45d49ab2aa20f481e1979a.
    
    * gnu/packages/glib.scm (dbus-for-jami): Use G-Expression.
    
    Change-Id: I56fd25502be65ba688519dea7462c401aeddba31
    Signed-off-by: Maxim Cournoyer <[email protected]>
---
 gnu/packages/glib.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index cf066a8aa6..b11046f05d 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2021 Maxime Devos <[email protected]>
 ;;; Copyright © 2022 Petr Hodina <[email protected]>
 ;;; Copyright © 2023 Saku Laesvuori <[email protected]>
+;;; Copyright © 2024 Zheng Junjie <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -202,12 +203,12 @@ shared NFS home directories.")
      (arguments
       (substitute-keyword-arguments (package-arguments dbus)
         ((#:phases phases)
-         `(modify-phases ,phases
-            (add-after 'unpack 'customize-config
-              (lambda _
-                (substitute* "bus/session.conf.in"
-                  (("@SYSCONFDIR_FROM_PKGDATADIR@/dbus-1/session-local.conf")
-                   "/var/run/jami/session-local.conf")))))))))))
+         #~(modify-phases #$phases
+             (add-after 'unpack 'customize-config
+               (lambda _
+                 (substitute* "bus/session.conf.in"
+                   (("@SYSCONFDIR_FROM_PKGDATADIR@/dbus-1/session-local.conf")
+                    "/var/run/jami/session-local.conf")))))))))))
 
 (define-public dbus-1.15.0
   ;; Dbus 1.15.2 has a breaking change.

Reply via email to