3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #32299 from orivej/gettext-datadirs

gettext: add setup hook populating GETTEXTDATADIRS
This commit is contained in:
Orivej Desh 2017-12-04 15:28:12 +00:00 committed by GitHub
commit b0311ab861
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -48,6 +48,8 @@ stdenv.mkDerivation rec {
# HACK, see #10874 (and 14664)
buildInputs = stdenv.lib.optional (!stdenv.isLinux && !hostPlatform.isCygwin) libiconv;
setupHook = ./gettext-setup-hook.sh;
enableParallelBuilding = true;
meta = {

View file

@ -0,0 +1,7 @@
gettextDataDirsHook() {
if [ -d "$1/share/gettext" ]; then
addToSearchPath GETTEXTDATADIRS "$1/share/gettext"
fi
}
envHooks+=(gettextDataDirsHook)