xfce4-panel: patch gettext in xfce4-popup-* scripts, fixes #30033

This commit is contained in:
Yegor Timoshenko 2017-10-31 05:50:29 +00:00
parent e2edccae47
commit bd4c66886a

View File

@ -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
, withGtk3 ? false, gtk3, gettext
}:
let
inherit (stdenv.lib) optional;
@ -20,6 +20,12 @@ stdenv.mkDerivation rec {
patches = [ ./xfce4-panel-datadir.patch ];
patchFlags = "-p1";
postPatch = ''
for f in $(find . -name \*.sh); do
substituteInPlace $f --replace gettext ${gettext}/bin/gettext
done
'';
outputs = [ "out" "dev" "devdoc" ];
buildInputs =
@ -47,4 +53,3 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.eelco ];
};
}