clfft: fix darwin build ()

This commit is contained in:
Aleksana 2024-10-17 11:33:19 +08:00 committed by GitHub
commit 9ed1730399
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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";