nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_cuobjdump";
5 outputs = [ "out" ];
6
7 meta = {
8 description = "Extracts information from CUDA binary files (both standalone and those embedded in host binaries) and presents them in human readable format";
9 longDescription = ''
10 `cuobjdump` extracts information from CUDA binary files (both standalone and those embedded in host binaries)
11 and presents them in human readable format. The output of cuobjdump includes CUDA assembly code for each kernel,
12 CUDA ELF section headers, string tables, relocators and other CUDA specific sections. It also extracts embedded
13 ptx text from host binaries.
14 '';
15 homepage = "https://docs.nvidia.com/cuda/cuda-binary-utilities#cuobjdump";
16 };
17}