about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2018-03-13 18:44:59 +0000
committerGitHub <noreply@github.com>2018-03-13 18:44:59 +0000
commit50fdcd414edf4a40e12f91ce4f8a1b73d45eb215 (patch)
tree6bbce7f8d587c53bff122a5620e20278ebd3a4b2 /pkgs/applications/window-managers
parent6e55d835762cef7015ee703e6d5edb1f18846701 (diff)
parentfe70fbdefe65266365ad14ed9e05e5d20e02151f (diff)
downloadnixlib-50fdcd414edf4a40e12f91ce4f8a1b73d45eb215.tar
nixlib-50fdcd414edf4a40e12f91ce4f8a1b73d45eb215.tar.gz
nixlib-50fdcd414edf4a40e12f91ce4f8a1b73d45eb215.tar.bz2
nixlib-50fdcd414edf4a40e12f91ce4f8a1b73d45eb215.tar.lz
nixlib-50fdcd414edf4a40e12f91ce4f8a1b73d45eb215.tar.xz
nixlib-50fdcd414edf4a40e12f91ce4f8a1b73d45eb215.tar.zst
nixlib-50fdcd414edf4a40e12f91ce4f8a1b73d45eb215.zip
Merge pull request #36888 from volth/xfce-naming
xfce: do not use old names
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 def5766e5ee1..f2acf03958b6 100644
--- a/pkgs/applications/window-managers/xmonad-log-applet/default.nix
+++ b/pkgs/applications/window-managers/xmonad-log-applet/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, glib, dbus-glib
 , desktopSupport
 , gtk2, gnome2_panel, GConf2
-, libxfce4util, xfce4panel
+, libxfce4util, xfce4-panel
 }:
 
 assert desktopSupport == "gnome2" || desktopSupport == "gnome3" || desktopSupport == "xfce4";
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
               ++ optionals (desktopSupport == "gnome2") [ gtk2 gnome2_panel GConf2 ]
               # TODO: no idea where to find libpanelapplet-4.0
               ++ optionals (desktopSupport == "gnome3") [ ]
-              ++ optionals (desktopSupport == "xfce4") [ gtk2 libxfce4util xfce4panel ]
+              ++ optionals (desktopSupport == "xfce4") [ gtk2 libxfce4util xfce4-panel ]
               ;
   
   nativeBuildInputs = [ autoreconfHook pkgconfig ];