nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_nvtx";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 ];
12
13 meta = {
14 description = "C-based Application Programming Interface (API) for annotating events, code ranges, and resources in your applications";
15 longDescription = ''
16 NVTX is a cross-platform API for annotating source code to provide contextual information to developer tools.
17
18 The NVTX API is written in C, with wrappers provided for C++ and Python.
19 '';
20 homepage = "https://github.com/NVIDIA/NVTX";
21 changelog = "https://github.com/NVIDIA/NVTX/releases";
22 };
23}