gnu: opencl-icd-loader: Use single directory in search path.

* gnu/packages/opencl.scm (opencl-icd-loader)[native-search-paths]:
Support only a single directory.
This commit is contained in:
Lars-Dominik Braun 2022-02-16 11:07:56 +01:00
parent 3cc7638258
commit b545d22364
No known key found for this signature in database
GPG key ID: F663943E08D8092A

View file

@ -139,7 +139,9 @@ (define-public opencl-icd-loader
(native-search-paths
(list (search-path-specification
(variable "OCL_ICD_VENDORS")
(files '("etc/OpenCL/vendors")))))
(files '("etc/OpenCL/vendors"))
;; Only supports a single directory.
(separator #f))))
(home-page "https://github.com/KhronosGroup/OpenCL-ICD-Loader")
(inputs (list opencl-headers))
(synopsis "OpenCL Installable Client Driver")