summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core
diff options
context:
space:
mode:
authorSergey Mironov <grrwlf@gmail.com>2018-01-31 22:10:21 +0300
committerSergey Mironov <grrwlf@gmail.com>2018-02-03 11:29:27 +0300
commit87451cc113b9ea9372f58a41182381f64367a44c (patch)
tree59bcda458fdeb883fcb15430cf2966b88c0feb7e /pkgs/desktops/xfce/core
parentcc1d7a358f57cade8e143f306fe4b480cc6646bb (diff)
downloadnixlib-87451cc113b9ea9372f58a41182381f64367a44c.tar
nixlib-87451cc113b9ea9372f58a41182381f64367a44c.tar.gz
nixlib-87451cc113b9ea9372f58a41182381f64367a44c.tar.bz2
nixlib-87451cc113b9ea9372f58a41182381f64367a44c.tar.lz
nixlib-87451cc113b9ea9372f58a41182381f64367a44c.tar.xz
nixlib-87451cc113b9ea9372f58a41182381f64367a44c.tar.zst
nixlib-87451cc113b9ea9372f58a41182381f64367a44c.zip
xfce4-weather-plugin 0.8.7 -> 0.8.10; add glib_networking
Diffstat (limited to 'pkgs/desktops/xfce/core')
-rw-r--r--pkgs/desktops/xfce/core/xfce4-panel.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/desktops/xfce/core/xfce4-panel.nix b/pkgs/desktops/xfce/core/xfce4-panel.nix
index e91a3ab25ee9..e9f6240cbdfe 100644
--- a/pkgs/desktops/xfce/core/xfce4-panel.nix
+++ b/pkgs/desktops/xfce/core/xfce4-panel.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui
 , libxfce4ui_gtk3, libwnck, exo, garcon, xfconf, libstartup_notification
 , makeWrapper, xfce4mixer, hicolor_icon_theme
-, withGtk3 ? false, gtk3, gettext
+, withGtk3 ? false, gtk3, gettext, glib_networking
 }:
 let
   inherit (stdenv.lib) optional;
@@ -40,7 +40,8 @@ stdenv.mkDerivation rec {
 
   postInstall = ''
     wrapProgram "$out/bin/xfce4-panel" \
-      --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
+      --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \
+      --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules"
   '';
 
   enableParallelBuilding = true;