ebd2e2aa9c
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
13 lines
283 B
Nix
13 lines
283 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "libnvptxcompiler";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
meta = {
|
|
description = "APIs which can be used to compile a PTX program into GPU assembly code";
|
|
homepage = "https://docs.nvidia.com/cuda/ptx-compiler-api";
|
|
};
|
|
}
|