29ce053617
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
20 lines
300 B
Nix
20 lines
300 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "libcufft";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"include"
|
|
"lib"
|
|
"static"
|
|
"stubs"
|
|
];
|
|
|
|
meta = {
|
|
description = "High-performance FFT product CUDA library";
|
|
homepage = "https://developer.nvidia.com/cufft";
|
|
};
|
|
}
|