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:
parent
b582fb070b
commit
df023a7d70
1 changed files with 3 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue