libjxl: disable tests on x86_64-darwin for now

Hopefully not too bad; it looked like less usual color encodings only.
This commit is contained in:
Vladimír Čunát 2022-12-16 14:27:29 +01:00
parent b582fb070b
commit df023a7d70
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -108,7 +108,9 @@ stdenv.mkDerivation rec {
LDFLAGS = lib.optionalString stdenv.hostPlatform.isRiscV "-latomic";
CXXFLAGS = lib.optionalString stdenv.hostPlatform.isAarch32 "-mfp16-format=ieee";
doCheck = !stdenv.hostPlatform.isi686;
# FIXME x86_64-darwin:
# https://github.com/NixOS/nixpkgs/pull/204030#issuecomment-1352768690
doCheck = with stdenv; !(hostPlatform.isi686 || isDarwin && isx86_64);
meta = with lib; {
homepage = "https://github.com/libjxl/libjxl";