nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_nvprune";
5
6 outputs = [ "out" ];
7
8 meta = {
9 description = "Prune host object files and libraries to only contain device code for the specified targets";
10 longDescription = ''
11 `nvprune` prunes host object files and libraries to only contain device code for the specified targets.
12 '';
13 homepage = "https://docs.nvidia.com/cuda/cuda-binary-utilities#nvprune";
14 };
15}