clfft: fix darwin build

Default to gcc on Darwin. There were no commits in a long time so no patches
are expected for the new Clang compatibility issue.
This commit is contained in:
Stanisław Pitucha 2024-10-15 15:53:31 +11:00
parent 7a330d7d74
commit b6dc649f3f

View File

@ -1,7 +1,8 @@
{ lib, stdenv, fetchFromGitHub, cmake, fftw, fftwFloat, boost, opencl-clhpp, ocl-icd, darwin }:
{ lib, gccStdenv, fetchFromGitHub, cmake, fftw, fftwFloat, boost, opencl-clhpp, ocl-icd, darwin }:
let
inherit (darwin.apple_sdk.frameworks) OpenCL;
stdenv = gccStdenv;
in
stdenv.mkDerivation rec {
pname = "clfft";