summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-09-12 22:22:39 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-09-13 06:47:22 -0700
commitf91a79ecc86c574134f3a13ba3d0750720964230 (patch)
tree14e31a65ca8c4c38779ff07f517329dc6caa8d05 /pkgs/applications/window-managers
parent0f2b10d1ac41c2f573fddbdf110a1ae435ffdd8a (diff)
downloadnixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.gz
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.bz2
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.lz
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.xz
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.zst
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.zip
treewide: fix `config.allowAliases = false` evaluation
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/xmonad/log-applet/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/window-managers/xmonad/log-applet/default.nix b/pkgs/applications/window-managers/xmonad/log-applet/default.nix
index 96f742df310..57f00887103 100644
--- a/pkgs/applications/window-managers/xmonad/log-applet/default.nix
+++ b/pkgs/applications/window-managers/xmonad/log-applet/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, glib, dbus-glib
-, desktopSupport, xlibs
+, desktopSupport, xorg
 , gtk2
 , gtk3, gnome3, mate
 , libxfce4util, xfce4-panel
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
     sha256 = "042307grf4zvn61gnflhsj5xsjykrk9sjjsprprm4iij0qpybxcw";
   };
 
-  buildInputs = [ glib dbus-glib xlibs.xcbutilwm ]
+  buildInputs = [ glib dbus-glib xorg.xcbutilwm ]
     ++ stdenv.lib.optionals (desktopSupport == "gnomeflashback") [ gtk3 gnome3.gnome-panel ]
     ++ stdenv.lib.optionals (desktopSupport == "mate") [ gtk3 mate.mate-panel ]
     ++ stdenv.lib.optionals (desktopSupport == "xfce4") [ gtk2 libxfce4util xfce4-panel ]