64e602559a
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
19 lines
396 B
Nix
19 lines
396 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "nvpl";
|
|
pname = "nvpl_rand";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"include"
|
|
"lib"
|
|
];
|
|
|
|
meta = {
|
|
description = "Collection of efficient pseudorandom and quasirandom number generators for ARM CPUs";
|
|
homepage = "https://developer.nvidia.com/nvpl";
|
|
changelog = "https://docs.nvidia.com/nvpl/latest/rand/release_notes.html";
|
|
};
|
|
}
|