Updating wings and dependencies to match erlang

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.
This commit is contained in:
Lluís Batlle i Rossell
2016-03-29 12:24:42 +02:00
parent e69306c463
commit f6a44bea9e
6 changed files with 108 additions and 18 deletions
@@ -0,0 +1,18 @@
{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;
};
}