Merge pull request #31024 from yegortimoshenko/xfce4-panel/gettext

xfce4-panel: patch gettext in xfce4-popup-* scripts, fixes #30033
This commit is contained in:
Orivej Desh 2017-11-16 20:49:34 +00:00 committed by GitHub
commit a368bbb57d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ];
};
}