None of those should be real. Things should not depend on mesa directly for any reason ever, except llvmpipeHook.
32 lines
580 B
Nix
32 lines
580 B
Nix
{
|
|
buildRedist,
|
|
libcufft,
|
|
libcurand,
|
|
libGLU,
|
|
libglut,
|
|
libglvnd,
|
|
}:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "cuda_demo_suite";
|
|
|
|
buildInputs = [
|
|
libcufft
|
|
libcurand
|
|
libGLU
|
|
libglut
|
|
libglvnd
|
|
];
|
|
|
|
outputs = [ "out" ];
|
|
|
|
meta = {
|
|
description = "Pre-built applications which use CUDA";
|
|
longDescription = ''
|
|
The CUDA Demo Suite contains pre-built applications which use CUDA. These applications demonstrate the
|
|
capabilities and details of NVIDIA GPUs.
|
|
'';
|
|
homepage = "https://docs.nvidia.com/cuda/demo-suite";
|
|
};
|
|
}
|