arrayfire: remove darwin from the list of supported platforms

This commit is contained in:
Tom Westerhout
2023-11-25 14:50:38 +01:00
parent 91a24f08c7
commit dbe957d773
2 changed files with 2 additions and 3 deletions
@@ -225,7 +225,7 @@ stdenv.mkDerivation rec {
'';
license = licenses.bsd3;
homepage = "https://arrayfire.com/";
platforms = platforms.linux ++ platforms.darwin;
platforms = platforms.linux;
maintainers = with maintainers; [ chessai twesterhout ];
};
}
+1 -2
View File
@@ -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 ];
};
}