64e602559a
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
17 lines
329 B
Nix
17 lines
329 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "nvpl";
|
|
pname = "nvpl_common";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
meta = {
|
|
description = "Common part of NVIDIA Performance Libraries";
|
|
homepage = "https://developer.nvidia.com/nvpl";
|
|
changelog = "https://docs.nvidia.com/nvpl/latest/release_notes.html";
|
|
};
|
|
}
|