pulsar: 1.124.0 -> 1.125.0 (#376475)
[NixPkgs.git] / pkgs / desktops / lxde / core / lxpanel / default.nix
blob9c47504405666df54f145b9458c48ef4faca8bce
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   gettext,
7   m4,
8   intltool,
9   libxmlxx,
10   keybinder,
11   keybinder3,
12   gtk2,
13   gtk3,
14   libX11,
15   libfm,
16   libwnck,
17   libwnck2,
18   libXmu,
19   libXpm,
20   cairo,
21   gdk-pixbuf,
22   gdk-pixbuf-xlib,
23   menu-cache,
24   lxmenu-data,
25   wirelesstools,
26   curl,
27   supportAlsa ? false,
28   alsa-lib,
29   withGtk3 ? true,
32 stdenv.mkDerivation rec {
33   pname = "lxpanel";
34   version = "0.10.1";
36   src = fetchurl {
37     url = "mirror://sourceforge/lxde/${pname}-${version}.tar.xz";
38     sha256 = "sha256-HjGPV9fja2HCOlBNA9JDDHja0ULBgERRBh8bPqVEHug=";
39   };
41   nativeBuildInputs = [
42     pkg-config
43     gettext
44     m4
45     intltool
46     libxmlxx
47   ];
48   buildInputs = [
49     (if withGtk3 then keybinder3 else keybinder)
50     (if withGtk3 then gtk3 else gtk2)
51     libX11
52     (libfm.override { inherit withGtk3; })
53     (if withGtk3 then libwnck else libwnck2)
54     libXmu
55     libXpm
56     cairo
57     gdk-pixbuf
58     gdk-pixbuf-xlib.dev
59     menu-cache
60     lxmenu-data
61     m4
62     wirelesstools
63     curl
64   ] ++ lib.optional supportAlsa alsa-lib;
66   postPatch = ''
67     substituteInPlace src/Makefile.in \
68       --replace "@PACKAGE_CFLAGS@" "@PACKAGE_CFLAGS@ -I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"
69     substituteInPlace plugins/Makefile.in \
70       --replace "@PACKAGE_CFLAGS@" "@PACKAGE_CFLAGS@ -I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"
71   '';
73   configureFlags = lib.optional withGtk3 "--enable-gtk3";
75   meta = with lib; {
76     description = "Lightweight X11 desktop panel for LXDE";
77     homepage = "https://lxde.org/";
78     license = licenses.gpl2Plus;
79     maintainers = [ maintainers.ryneeverett ];
80     platforms = platforms.linux;
81   };