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

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";
};
}