f6a44bea9e
I updated the erlang esdl lib, added the erlang cl lib, added opencl-headers and ocl-icd to make wings build and run. I have not tested its opencl part; I only added dependencies so it builds.
19 lines
439 B
Nix
19 lines
439 B
Nix
{stdenv, fetchurl, ruby }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocl-icd-2.2.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://forge.imag.fr/frs/download.php/716/${name}.tar.gz";
|
|
sha256 = "1rgaixwnxmrq2aq4kcdvs0yx7i6krakarya9vqs7qwsv5hzc32hc";
|
|
};
|
|
|
|
buildInputs = [ ruby ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "OpenCL ICD Loader";
|
|
homepage = https://forge.imag.fr/projects/ocl-icd/;
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|