29ce053617
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
16 lines
456 B
Nix
16 lines
456 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "cuda_nvprune";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
meta = {
|
|
description = "Prune host object files and libraries to only contain device code for the specified targets";
|
|
longDescription = ''
|
|
`nvprune` prunes host object files and libraries to only contain device code for the specified targets.
|
|
'';
|
|
homepage = "https://docs.nvidia.com/cuda/cuda-binary-utilities#nvprune";
|
|
};
|
|
}
|