arrayfire: use plain callPackage instead of darwin.apple_sdk_11_0.callPackage

This commit is contained in:
Tom Westerhout 2023-08-25 21:07:59 +02:00
parent fab8a8fe38
commit 4dc3266a3b
2 changed files with 5 additions and 1 deletions

View file

@ -48,6 +48,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
# ArrayFire have their own CMake functions for downloading the
# dependencies, and it uses git. Even though we bypass that system by
# downloading the dependencies beforehand, CMake files still invoke git for
# checking...
git
pkg-config
];

View file

@ -20548,7 +20548,7 @@ with pkgs;
armadillo = callPackage ../development/libraries/armadillo { };
arrayfire = darwin.apple_sdk_11_0.callPackage ../development/libraries/arrayfire {
arrayfire = callPackage ../development/libraries/arrayfire {
cudaPackages = cudaPackages_12;
};