From b6dc649f3fbda021398fdfe1113516fe73e9e786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Tue, 15 Oct 2024 15:53:31 +1100 Subject: [PATCH] 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. --- pkgs/development/libraries/clfft/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/clfft/default.nix b/pkgs/development/libraries/clfft/default.nix index 5843c1b1fcca..52ff8e4e0569 100644 --- a/pkgs/development/libraries/clfft/default.nix +++ b/pkgs/development/libraries/clfft/default.nix @@ -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";