nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_sanitizer_api";
5
6 outputs = [ "out" ];
7
8 allowFHSReferences = true;
9
10 meta = {
11 description = "Enables the creation of sanitizing and tracing tools that target CUDA applications";
12 longDescription = ''
13 The Compute Sanitizer API enables the creation of sanitizing and tracing tools that target CUDA applications.
14 Examples of such tools are memory and race condition checkers.
15 '';
16 homepage = "https://docs.nvidia.com/compute-sanitizer/SanitizerApiGuide";
17 };
18}