nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_nvvp";
5
6 outputs = [ "out" ];
7
8 allowFHSReferences = true;
9
10 meta = {
11 description = "Cross-platform performance profiling tool for optimizing CUDA C/C++ applications";
12 longDescription = ''
13 The NVIDIA Visual Profiler is a cross-platform performance profiling tool that delivers developers vital
14 feedback for optimizing CUDA C/C++ applications.
15 '';
16 homepage = "https://developer.nvidia.com/nvidia-visual-profiler";
17 };
18}