mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
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";
|
|
};
|
|
}
|