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.
24 lines
550 B
Nix
24 lines
550 B
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opencl-headers-2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "OpenCL-Headers";
|
|
rev = "c1770dcc6cf1daadec1905e7393f3691c1dde200";
|
|
sha256 = "0m9fkblqja0686i2jjqiszvq3df95gp01a2674xknlmkd6525rck";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include/CL
|
|
cp * $out/include/CL
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Khronos OpenCL headers";
|
|
homepage = https://www.khronos.org/registry/cl/;
|
|
license = licenses.mit;
|
|
};
|
|
}
|