libxml2: fix configure flags

`$dev` will be substituted by empty string (would have to be `$(dev)`),
causing issues in 2.9.13. Let’s fix that and use the cannonical name.
This commit is contained in:
Jan Tojnar 2022-02-20 17:36:34 +01:00
parent 65ca2a4bbb
commit 7eb38d554c

View file

@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
];
configureFlags = [
"--exec_prefix=$dev"
"--exec-prefix=${placeholder "dev"}"
(lib.enableFeature enableStatic "static")
(lib.enableFeature enableShared "shared")
(lib.withFeature icuSupport "icu")