gpu-burn: fix build

This commit is contained in:
Samuel Ainsworth 2022-04-19 19:31:44 +00:00
parent 92a001fa1c
commit 7c55d1d164

View File

@ -3575,7 +3575,12 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
gpu-burn = callPackage ../applications/misc/gpu-burn { };
gpu-burn = callPackage ../applications/misc/gpu-burn {
# gpu-burn doesn't build on gcc11. CUDA 11.3 is the last version to use
# pre-gcc11, in particular gcc9.
cudatoolkit = cudaPackages_11_3.cudatoolkit;
stdenv = gcc9Stdenv;
};
greg = callPackage ../applications/audio/greg {
pythonPackages = python3Packages;