summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-04-25 03:20:18 +0000
committerJan Malakhovski <oxij@oxij.org>2018-04-25 04:18:46 +0000
commit7438083a4d9d7b60b915d59e118f19398f177fe3 (patch)
treed3b029da9c936317d1eb7432f08ecb5ef32b4820 /pkgs/desktops/xfce/core
parentf07f0c6009bb4c2653350fac8db2eee29e09bd1b (diff)
downloadnixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.gz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.bz2
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.lz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.xz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.zst
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.zip
tree-wide: disable `doCheck` and `doInstallCheck` where it fails (the trivial part)
Diffstat (limited to 'pkgs/desktops/xfce/core')
-rw-r--r--pkgs/desktops/xfce/core/xfconf.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/desktops/xfce/core/xfconf.nix b/pkgs/desktops/xfce/core/xfconf.nix
index 9aa66a1343f6..9af365c6f14d 100644
--- a/pkgs/desktops/xfce/core/xfconf.nix
+++ b/pkgs/desktops/xfce/core/xfconf.nix
@@ -19,6 +19,8 @@ stdenv.mkDerivation rec {
   buildInputs = [ intltool glib libxfce4util ];
   propagatedBuildInputs = [ dbus-glib ];
 
+  doCheck = false; # requires dbus daemon
+
   meta = with stdenv.lib; {
     homepage = http://docs.xfce.org/xfce/xfconf/start;
     description = "Simple client-server configuration storage and query system for Xfce";
@@ -26,4 +28,3 @@ stdenv.mkDerivation rec {
     platforms = platforms.linux;
   };
 }
-