about summary refs log tree commit diff
path: root/pkgs/development/libraries/forge
diff options
context:
space:
mode:
authorTom Westerhout <14264576+twesterhout@users.noreply.github.com>2023-11-25 11:43:02 +0100
committerTom Westerhout <14264576+twesterhout@users.noreply.github.com>2023-11-25 14:50:38 +0100
commitdbe957d77339b155cd406b0f6dd48aaadc879637 (patch)
tree10dae8a4dabec7a8a88679717571c69324b65907 /pkgs/development/libraries/forge
parent91a24f08c7f07319fd0f8b7d6eef8506b6e73acb (diff)
arrayfire: remove darwin from the list of supported platforms
Diffstat (limited to 'pkgs/development/libraries/forge')
-rw-r--r--pkgs/development/libraries/forge/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/forge/default.nix b/pkgs/development/libraries/forge/default.nix
index c5fe5dcc9af10..6e576545c970e 100644
--- a/pkgs/development/libraries/forge/default.nix
+++ b/pkgs/development/libraries/forge/default.nix
@@ -69,7 +69,6 @@ stdenv.mkDerivation rec {
     libGLU
     opencl-clhpp
     SDL2
-  ] ++ lib.optionals (!stdenv.isDarwin) [
     mesa
   ];
 
@@ -82,7 +81,7 @@ stdenv.mkDerivation rec {
     '';
     license = licenses.bsd3;
     homepage = "https://arrayfire.com/";
-    platforms = platforms.linux ++ platforms.darwin;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ chessai twesterhout ];
   };
 }