nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 21 lines 515 B view raw
1{ buildRedist }: 2buildRedist { 3 redistName = "cuda"; 4 pname = "cuda_cuxxfilt"; 5 6 outputs = [ 7 "out" 8 "bin" 9 "dev" 10 "include" 11 "static" 12 ]; 13 14 meta = { 15 description = "Decode low-level identifiers that have been mangled by CUDA C++ into user readable names"; 16 longDescription = '' 17 cu++filt decodes (demangles) low-level identifiers that have been mangled by CUDA C++ into user readable names. 18 ''; 19 homepage = "https://docs.nvidia.com/cuda/cuda-binary-utilities#cu-filt"; 20 }; 21}