gnu: dbus-for-jami: Use Gexp.
This is a follow-up to 26485fc575
.
* gnu/packages/glib.scm (dbus-for-jami): Use G-Expression.
Change-Id: I56fd25502be65ba688519dea7462c401aeddba31
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
master
parent
05eb9349e3
commit
83f5e5c17f
|
@ -19,6 +19,7 @@
|
||||||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||||
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
||||||
;;; Copyright © 2023 Saku Laesvuori <saku@laesvuori.fi>
|
;;; Copyright © 2023 Saku Laesvuori <saku@laesvuori.fi>
|
||||||
|
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -202,12 +203,12 @@ shared NFS home directories.")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments dbus)
|
(substitute-keyword-arguments (package-arguments dbus)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
#~(modify-phases #$phases
|
||||||
(add-after 'unpack 'customize-config
|
(add-after 'unpack 'customize-config
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "bus/session.conf.in"
|
(substitute* "bus/session.conf.in"
|
||||||
(("@SYSCONFDIR_FROM_PKGDATADIR@/dbus-1/session-local.conf")
|
(("@SYSCONFDIR_FROM_PKGDATADIR@/dbus-1/session-local.conf")
|
||||||
"/var/run/jami/session-local.conf")))))))))))
|
"/var/run/jami/session-local.conf")))))))))))
|
||||||
|
|
||||||
(define-public dbus-1.15.0
|
(define-public dbus-1.15.0
|
||||||
;; Dbus 1.15.2 has a breaking change.
|
;; Dbus 1.15.2 has a breaking change.
|
||||||
|
|
Reference in New Issue