me
/
guix
Archived
1
0
Fork 0

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.
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
1 changed files with 3 additions and 1 deletions

View File

@ -139,7 +139,9 @@
(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")