Skip to content

Commit

Permalink
Merge pull request #1205 from wizeman/xfce
Browse files Browse the repository at this point in the history
Xfce improvements
  • Loading branch information
7c6f434c committed Nov 23, 2013
2 parents 87eac03 + fa52e46 commit 161ac7c
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pkgs/desktops/xfce/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@

xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { };

};
}
Expand Down
5 changes: 5 additions & 0 deletions pkgs/desktops/xfce/core/xfce4-session.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ stdenv.mkDerivation rec {
polkit
];

preBuild = ''
sed '/^PATH=/d' -i scripts/xflock4
sed '/^export PATH$/d' -i scripts/xflock4
'';

configureFlags = [ "--with-xsession-prefix=$(out)" ];

preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
Expand Down
4 changes: 3 additions & 1 deletion pkgs/desktops/xfce/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
#### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"

xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { };

}; # xfce_self

Expand Down
23 changes: 23 additions & 0 deletions pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfcegui4, xfce4panel
, gtk }:

stdenv.mkDerivation rec {
p_name = "xfce4-datetime-plugin";
ver_maj = "0.6";
ver_min = "1";

name = "${p_name}-${ver_maj}.${ver_min}";

src = fetchurl {
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
sha256 = "06xvh22y5y0bcy7zb9ylvjpcl09wdyb751r7gwyg7m3h44f0qd7v";
};

buildInputs = [ pkgconfig intltool libxfce4util libxfcegui4 xfce4panel gtk ];

meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Shows the date and time in the panel, and a calendar appears when you left-click on it";
platforms = stdenv.lib.platforms.linux;
};
}
25 changes: 25 additions & 0 deletions pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfce4ui, xfce4panel
, gtk, libxklavier, librsvg, libwnck
}:

stdenv.mkDerivation rec {
p_name = "xfce4-xkb-plugin";
ver_maj = "0.5";
ver_min = "4.3";

name = "${p_name}-${ver_maj}.${ver_min}";

src = fetchurl {
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
sha256 = "0v9r0w9m5lxrzmz12f8w67l781lsywy9p1vixgn4xq6z5sxh2j6a";
};

buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel gtk
libxklavier librsvg libwnck ];

meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Allows you to setup and use multiple keyboard layouts";
platforms = stdenv.lib.platforms.linux;
};
}

0 comments on commit 161ac7c

Please sign in to comment.