rubyPackages.nokogiri: mark as broken for old libxml2 (#321431)

This commit is contained in:
Stanisław Pitucha
2024-10-06 08:55:19 +11:00
committed by GitHub

View File

@@ -624,6 +624,11 @@ in
];
} // lib.optionalAttrs stdenv.hostPlatform.isDarwin {
buildInputs = [ libxml2 ];
# libxml 2.12 upgrade requires these fixes
# https://github.com/sparklemotion/nokogiri/pull/3032
# which don't trivially apply to older versions
meta.broken = (lib.versionOlder attrs.version "1.16.0") && (lib.versionAtLeast libxml2.version "2.12");
});
openssl = attrs: {