gnu: xfconf: Fix tests.
* gnu/packages/xfce.scm (xfconf)[arguments]: Rename check phase to custom-check. [native-inputs]: Add dbus. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
dbfd5a1380
commit
279b5730d4
1 changed files with 3 additions and 2 deletions
|
@ -127,7 +127,7 @@ Xfce Desktop Environment.")
|
||||||
'(#:phases
|
'(#:phases
|
||||||
;; Run check after install phase to test dbus activation.
|
;; Run check after install phase to test dbus activation.
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'check
|
(add-after 'install 'custom-check
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "HOME" (getenv "TMPDIR")) ; xfconfd requires a writable HOME
|
(setenv "HOME" (getenv "TMPDIR")) ; xfconfd requires a writable HOME
|
||||||
;; Run test-suite under a dbus session.
|
;; Run test-suite under a dbus session.
|
||||||
|
@ -142,7 +142,8 @@ Xfce Desktop Environment.")
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("glib:bin" ,glib "bin") ;; for gdbus-codegen
|
("glib:bin" ,glib "bin") ;; for gdbus-codegen
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("vala" ,vala)))
|
("vala" ,vala)
|
||||||
|
("dbus" ,dbus)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; libxfconf-0.pc refers to all these.
|
;; libxfconf-0.pc refers to all these.
|
||||||
`(("glib" ,glib)))
|
`(("glib" ,glib)))
|
||||||
|
|
Reference in a new issue