implot.tests.implot-demos: don't build on Darwin or aarch64

This commit is contained in:
Someone Serge 2024-05-28 13:27:59 +00:00
parent 227e1e98b4
commit 5940b0974d

View File

@ -70,6 +70,9 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Standalone ImPlot Demos";
homepage = "https://github.com/epezent/implot_demos";
broken =
stdenv.hostPlatform.isAarch64 # Target "mandel" relies on AVX2
|| stdenv.isDarwin;
license = licenses.mit;
maintainers = with maintainers; [ SomeoneSerge ];
mainProgram = "implot-demos";