Merge pull request #21995 from abbradar/opencl

Fix OpenCL support
This commit is contained in:
Nikolay Amiantov
2017-01-20 12:09:17 +03:00
committed by GitHub
13 changed files with 152 additions and 119 deletions

View File

@@ -10,7 +10,7 @@
, appdirs
, six
, opencl-headers
, opencl-icd
, ocl-icd
}:
buildPythonPackage rec {
@@ -18,7 +18,7 @@ buildPythonPackage rec {
version = "2016.2";
name = "${pname}-${version}";
buildInputs = [ pytest opencl-headers opencl-icd ];
buildInputs = [ pytest opencl-headers ocl-icd ];
propagatedBuildInputs = [ numpy cffi pytools decorator appdirs six Mako ];
@@ -36,4 +36,4 @@ buildPythonPackage rec {
license = stdenv.lib.licenses.mit;
maintainer = stdenv.lib.maintainers.fridh;
};
}
}