about summary refs log tree commit diff
path: root/pkgs/desktops/lxde
diff options
context:
space:
mode:
authorryneeverett <ryneeverett@gmail.com>2020-09-10 07:36:42 +0000
committerehmry <ehmry@posteo.net>2020-09-16 08:39:13 +0200
commit52c3214ea6853eabd52f3f569e4c7fbcdc520b08 (patch)
treea9ab7757b1d7900e47328c51b75785a4e01bc492 /pkgs/desktops/lxde
parent917a183d97e8ca7e4db1b9dc5d475a29a54b94e7 (diff)
lxpanel: 0.9.3 -> 0.10.0
Curl is a new requirement so the weather plugin can use libcurl to pull
weather data.
Diffstat (limited to 'pkgs/desktops/lxde')
-rw-r--r--pkgs/desktops/lxde/core/lxpanel/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/desktops/lxde/core/lxpanel/default.nix b/pkgs/desktops/lxde/core/lxpanel/default.nix
index da146764c3204..1e0fb3569825a 100644
--- a/pkgs/desktops/lxde/core/lxpanel/default.nix
+++ b/pkgs/desktops/lxde/core/lxpanel/default.nix
@@ -1,21 +1,21 @@
 { stdenv, fetchurl, pkgconfig, gettext, m4, intltool, libxmlxx, keybinder
 , gtk2, libX11, libfm, libwnck, libXmu, libXpm, cairo, gdk-pixbuf, gdk-pixbuf-xlib
-, menu-cache, lxmenu-data, wirelesstools
+, menu-cache, lxmenu-data, wirelesstools, curl
 , supportAlsa ? false, alsaLib
 }:
 
 stdenv.mkDerivation rec {
-  name = "lxpanel-0.9.3";
+  name = "lxpanel-0.10.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/lxde/${name}.tar.xz";
-    sha256 = "1ccgv7jgl3y865cpb6w7baaz7468fxncm83bqxlwyni5bwhglb1l";
+    sha256 = "0zis3b815p375s6mymhf5sn1a0c1xv0ixxzb0mh3fqhrby6cqy26";
   };
 
   nativeBuildInputs = [ pkgconfig gettext m4 intltool libxmlxx ];
   buildInputs = [
     keybinder gtk2 libX11 libfm libwnck libXmu libXpm cairo gdk-pixbuf gdk-pixbuf-xlib.dev
-    menu-cache lxmenu-data m4 wirelesstools
+    menu-cache lxmenu-data m4 wirelesstools curl
   ] ++ stdenv.lib.optional supportAlsa alsaLib;
 
   postPatch = ''