mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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>
This commit is contained in:
parent
05eb9349e3
commit
83f5e5c17f
1 changed files with 7 additions and 6 deletions
|
@ -19,6 +19,7 @@
|
|||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
||||
;;; Copyright © 2023 Saku Laesvuori <saku@laesvuori.fi>
|
||||
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -202,12 +203,12 @@ (define-public dbus-for-jami
|
|||
(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.
|
||||
|
|
Loading…
Reference in a new issue