Files
Connor Baker 29ce053617 cudaPackages: build redists from manifests
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
2025-10-22 13:14:45 -07:00

19 lines
559 B
Nix

{ buildRedist }:
buildRedist {
redistName = "cuda";
pname = "cuda_sanitizer_api";
outputs = [ "out" ];
allowFHSReferences = true;
meta = {
description = "Enables the creation of sanitizing and tracing tools that target CUDA applications";
longDescription = ''
The Compute Sanitizer API enables the creation of sanitizing and tracing tools that target CUDA applications.
Examples of such tools are memory and race condition checkers.
'';
homepage = "https://docs.nvidia.com/compute-sanitizer/SanitizerApiGuide";
};
}