diff options
author | L p R n d n <guix@lprndn.info> | 2019-09-02 16:04:52 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-07 00:36:34 +0200 |
commit | 279b5730d41720868e4e9b93e1bf2338936bfaa7 (patch) | |
tree | b7ff9fda3607ac261e044080c30a7fdf7ce0a56e /gnu/packages/xfce.scm | |
parent | dbfd5a1380cb8b2e2596a6669d2ae36703ea75fe (diff) |
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>
Diffstat (limited to 'gnu/packages/xfce.scm')
-rw-r--r-- | gnu/packages/xfce.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index d4b32b335c..045f14f768 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -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))) |