embree,embree2: disable aarch64-linux

Versions 2 and 3 of the library do not support linux ARM.
This commit is contained in:
Stanisław Pitucha 2023-03-10 15:13:38 +11:00
parent 92a9b81a53
commit 31d5f226ee
2 changed files with 2 additions and 1 deletions

View file

@ -22,6 +22,6 @@ stdenv.mkDerivation {
homepage = "https://embree.github.io/";
maintainers = with maintainers; [ hodapp ];
license = licenses.asl20;
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}

View file

@ -39,5 +39,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ hodapp gebner ];
license = licenses.asl20;
platforms = platforms.unix;
badPlatforms = [ "aarch64-linux" ];
};
}