9d38d180db
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
16 lines
365 B
Nix
16 lines
365 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "libnvfatbin";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
# Includes stubs.
|
|
includeRemoveStubsFromRunpathHook = true;
|
|
|
|
meta = {
|
|
description = "APIs which can be used at runtime to combine multiple CUDA objects into one CUDA fat binary (fatbin)";
|
|
homepage = "https://docs.nvidia.com/cuda/nvfatbin";
|
|
};
|
|
}
|