nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "libnvfatbin";
5
6 outputs = [ "out" ];
7
8 # Includes stubs.
9 includeRemoveStubsFromRunpathHook = true;
10
11 meta = {
12 description = "APIs which can be used at runtime to combine multiple CUDA objects into one CUDA fat binary (fatbin)";
13 homepage = "https://docs.nvidia.com/cuda/nvfatbin";
14 };
15}