29ce053617
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
20 lines
606 B
Nix
20 lines
606 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "cuda_nsight";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
allowFHSReferences = true;
|
|
|
|
meta = {
|
|
description = "Nsight Eclipse Plugins Edition";
|
|
longDescription = ''
|
|
NVIDIA Nsight Eclipse Edition is a unified CPU plus GPU integrated development environment (IDE) for developing
|
|
CUDA applications on Linux and Mac OS X for the x86, POWER and ARM platforms. It is designed to help developers
|
|
on all stages of the software development process.
|
|
'';
|
|
homepage = "https://docs.nvidia.com/cuda/nsight-eclipse-plugins-guide";
|
|
};
|
|
}
|