summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/lxde
diff options
context:
space:
mode:
authorryneeverett <ryneeverett@gmail.com>2017-05-01 21:45:27 -0400
committerBjørn Forsman <bjorn.forsman@gmail.com>2017-05-20 15:41:09 +0200
commit34bdf451c32aff3d0f0f3ad69b1097616d6f5c04 (patch)
tree9cb5592d704bdb4fb3114c5bf94a09c8722efe0f /pkgs/desktops/lxde
parentc66af84b3c29e916bacbc5d1c6aaa9a21a14a29d (diff)
lxpanel: init at 0.9.3
[Bjørn: break overlong lines.]
Diffstat (limited to 'pkgs/desktops/lxde')
-rw-r--r--pkgs/desktops/lxde/core/lxpanel/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/desktops/lxde/core/lxpanel/default.nix b/pkgs/desktops/lxde/core/lxpanel/default.nix
new file mode 100644
index 000000000000..a05905547fd6
--- /dev/null
+++ b/pkgs/desktops/lxde/core/lxpanel/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, pkgconfig, gettext, m4, intltool, libxmlxx, keybinder
+, gtk2, libX11, libfm, libwnck, libXmu, libXpm, cairo, gdk_pixbuf
+, menu-cache, lxmenu-data, wirelesstools
+, supportAlsa ? false, alsaLib
+}:
+
+stdenv.mkDerivation rec {
+ name = "lxpanel-0.9.3";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/lxde/${name}.tar.xz";
+ sha256 = "1ccgv7jgl3y865cpb6w7baaz7468fxncm83bqxlwyni5bwhglb1l";
+ };
+
+ nativeBuildInputs = [ pkgconfig gettext m4 intltool libxmlxx ];
+ buildInputs = [
+ keybinder gtk2 libX11 libfm libwnck libXmu libXpm cairo gdk_pixbuf
+ menu-cache lxmenu-data m4 wirelesstools
+ ] ++ stdenv.lib.optional supportAlsa alsaLib;
+
+ meta = {
+ description = "Lightweight X11 desktop panel for LXDE";
+ homepage = "http://lxde.org/";
+ license = stdenv.lib.licenses.gpl2;
+ maintainers = [ stdenv.lib.maintainers.ryneeverett ];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}