nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "nvpl";
4 pname = "nvpl_sparse";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 ];
12
13 meta = {
14 description = "Provides a set of CPU-accelerated basic linear algebra subroutines used for handling sparse matrices";
15 homepage = "https://developer.nvidia.com/nvpl";
16 changelog = "https://docs.nvidia.com/nvpl/latest/sparse/release_notes.html";
17 };
18}