nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_opencl";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 ];
12
13 meta = {
14 description = "Low-level API for heterogeneous computing that runs on CUDA-powered GPUs";
15 longDescription = ''
16 OpenCL™ (Open Computing Language) is a low-level API for heterogeneous computing that runs on CUDA-powered GPUs.
17 Using the OpenCL API, developers can launch compute kernels written using a limited subset of the C programming
18 language on a GPU.
19 '';
20 homepage = "https://developer.nvidia.com/opencl";
21 };
22}