phpPackags.gettext: configureFlags should be a list

This commit is contained in:
Jörg Thalheim 2021-01-06 07:09:17 +01:00
parent c11d10fc6a
commit 2af38d76fe
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -310,7 +310,7 @@ lib.makeScope pkgs.newScope (self: with self; {
})
];
postPhpize = ''substituteInPlace configure --replace 'as_fn_error $? "Cannot locate header file libintl.h" "$LINENO" 5' ':' '';
configureFlags = "--with-gettext=${gettext}"; }
configureFlags = [ "--with-gettext=${gettext}" ]; }
{ name = "gmp";
buildInputs = [ gmp ];
configureFlags = [ "--with-gmp=${gmp.dev}" ]; }