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:
L p R n d n 2019-09-02 16:04:52 +02:00 committed by Ludovic Courtès
parent dbfd5a1380
commit 279b5730d4
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -127,7 +127,7 @@ Xfce Desktop Environment.")
'(#:phases
;; Run check after install phase to test dbus activation.
(modify-phases %standard-phases
(add-after 'install 'check
(add-after 'install 'custom-check
(lambda _
(setenv "HOME" (getenv "TMPDIR")) ; xfconfd requires a writable HOME
;; Run test-suite under a dbus session.
@ -142,7 +142,8 @@ Xfce Desktop Environment.")
("intltool" ,intltool)
("glib:bin" ,glib "bin") ;; for gdbus-codegen
("gobject-introspection" ,gobject-introspection)
("vala" ,vala)))
("vala" ,vala)
("dbus" ,dbus)))
(propagated-inputs
;; libxfconf-0.pc refers to all these.
`(("glib" ,glib)))