libxls: fix build against gettext >= 0.25

This commit is contained in:
Martin Joerg
2025-10-18 22:24:23 +00:00
parent 4e9d2c300b
commit fd6c3ab7b8
+15
View File
@@ -17,6 +17,21 @@ stdenv.mkDerivation rec {
hash = "sha256-KbITHQ9s2RUeo8zR53R9s4WUM6z8zzddz1k47So0Mlw=";
};
# workaround required to build against gettext >= 0.25
# https://savannah.gnu.org/support/index.php?111272
preAutoreconf = ''
autopoint --force
'';
# workaround required to build against gettext >= 0.25
# https://savannah.gnu.org/support/index.php?111273
autoreconfFlags = [
"--include=m4"
"--install"
"--force"
"--verbose"
];
nativeBuildInputs = [
autoreconfHook
autoconf-archive