-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1205 from wizeman/xfce
Xfce improvements
- Loading branch information
Showing
5 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
} |