Files
K900 520e2f27a5 treewide: remove unnecessary dependencies on mesa
None of those should be real. Things should not depend on mesa
directly for any reason ever, except llvmpipeHook.
2026-01-31 18:42:58 +03:00

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