libunistring: enable updateAutotoolsGnuConfigScriptsHook

This is necessary for FreeBSD native.
This commit is contained in:
Audrey Dutcher 2024-05-28 18:21:17 -07:00
parent a21afc1d92
commit 1e930af9dd

View File

@ -1,4 +1,4 @@
{ fetchurl, lib, stdenv, libiconv }: { fetchurl, lib, stdenv, libiconv, updateAutotoolsGnuConfigScriptsHook }:
# Note: this package is used for bootstrapping fetchurl, and thus # Note: this package is used for bootstrapping fetchurl, and thus
# cannot use fetchpatch! All mutable patches (generated by GitHub or # cannot use fetchpatch! All mutable patches (generated by GitHub or
@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
strictDeps = true; strictDeps = true;
propagatedBuildInputs = lib.optional (!stdenv.isLinux) libiconv; propagatedBuildInputs = lib.optional (!stdenv.isLinux) libiconv;
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];
configureFlags = [ configureFlags = [
"--with-libiconv-prefix=${libiconv}" "--with-libiconv-prefix=${libiconv}"