summaryrefslogtreecommitdiffstats
path: root/pkgs/development/cuda-modules/packages/cuda_nvprune.nix
blob: db3c7b60e6f514d4d841f34e907a2fa28d08d734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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";
  };
}