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

31 lines
743 B
Nix

{
backendStdenv,
buildRedist,
lib,
}:
buildRedist {
redistName = "cuda";
pname = "cuda_cupti";
outputs = [
"out"
"dev"
"include"
"lib"
"samples"
]
++ lib.optionals (backendStdenv.hostNixSystem == "x86_64-linux") [ "static" ];
allowFHSReferences = true;
meta = {
description = "C-based interface for creating profiling and tracing tools designed for CUDA applications";
longDescription = ''
The CUDA Profiling Tools Interface (CUPTI) provides a C-based interface for creating profiling and tracing tools
designed for CUDA applications.
'';
homepage = "https://docs.nvidia.com/cupti";
changelog = "https://docs.nvidia.com/cupti/release-notes/release-notes.html";
};
}