about summary refs log tree commit diff
path: root/pkgs/by-name/im
diff options
context:
space:
mode:
authorSomeone Serge <else@someonex.net>2024-05-28 13:27:59 +0000
committerSomeone Serge <else@someonex.net>2024-05-28 19:58:03 +0000
commit5940b0974da95bfaab0016f1ec0d5ff8929b5b39 (patch)
tree7b95c662dd10e1c02775ec8bad0bb6bbf437c159 /pkgs/by-name/im
parent227e1e98b493ee7d5cd5c77d535003bacd9712d3 (diff)
implot.tests.implot-demos: don't build on Darwin or aarch64
Diffstat (limited to 'pkgs/by-name/im')
-rw-r--r--pkgs/by-name/im/implot/demos/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/by-name/im/implot/demos/default.nix b/pkgs/by-name/im/implot/demos/default.nix
index 43426777e45fb..84a7ed398b64e 100644
--- a/pkgs/by-name/im/implot/demos/default.nix
+++ b/pkgs/by-name/im/implot/demos/default.nix
@@ -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";