Skip to content

Commit 34bdf45

Browse files
ryneeverettbjornfor
authored andcommittedMay 20, 2017
lxpanel: init at 0.9.3
[Bjørn: break overlong lines.]
1 parent c66af84 commit 34bdf45

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{ stdenv, fetchurl, pkgconfig, gettext, m4, intltool, libxmlxx, keybinder
2+
, gtk2, libX11, libfm, libwnck, libXmu, libXpm, cairo, gdk_pixbuf
3+
, menu-cache, lxmenu-data, wirelesstools
4+
, supportAlsa ? false, alsaLib
5+
}:
6+
7+
stdenv.mkDerivation rec {
8+
name = "lxpanel-0.9.3";
9+
10+
src = fetchurl {
11+
url = "mirror://sourceforge/lxde/${name}.tar.xz";
12+
sha256 = "1ccgv7jgl3y865cpb6w7baaz7468fxncm83bqxlwyni5bwhglb1l";
13+
};
14+
15+
nativeBuildInputs = [ pkgconfig gettext m4 intltool libxmlxx ];
16+
buildInputs = [
17+
keybinder gtk2 libX11 libfm libwnck libXmu libXpm cairo gdk_pixbuf
18+
menu-cache lxmenu-data m4 wirelesstools
19+
] ++ stdenv.lib.optional supportAlsa alsaLib;
20+
21+
meta = {
22+
description = "Lightweight X11 desktop panel for LXDE";
23+
homepage = "http://lxde.org/";
24+
license = stdenv.lib.licenses.gpl2;
25+
maintainers = [ stdenv.lib.maintainers.ryneeverett ];
26+
platforms = stdenv.lib.platforms.linux;
27+
};
28+
}

‎pkgs/top-level/all-packages.nix

+4
Original file line numberDiff line numberDiff line change
@@ -6001,6 +6001,10 @@ with pkgs;
60016001

60026002
lxmenu-data = callPackage ../desktops/lxde/core/lxmenu-data.nix { };
60036003

6004+
lxpanel = callPackage ../desktops/lxde/core/lxpanel {
6005+
gtk2 = gtk2-x11;
6006+
};
6007+
60046008
kona = callPackage ../development/interpreters/kona {};
60056009

60066010
lolcode = callPackage ../development/interpreters/lolcode { };

0 commit comments

Comments
 (0)
Please sign in to comment.