guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit 3e5d7e07a5d918e92a9c29ad420c2fb96281fc91
Author: Cayetano Santos <[email protected]>
AuthorDate: Sat Jan 17 17:43:52 2026 +0100
gnu: clinfo: Update to 3.0.25.02.14.
* gnu/packages/opencl.scm (clinfo): Update to 3.0.25.02.14.
[arguments]: Use G-Expressions.
Merges guix/guix!5699
Change-Id: I5d345f8d6073e7aec89b1853b4d61199c710d5c6
---
gnu/packages/opencl.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/opencl.scm b/gnu/packages/opencl.scm
index 8ac6fa8adb..39ce8cd29d 100644
--- a/gnu/packages/opencl.scm
+++ b/gnu/packages/opencl.scm
@@ -149,7 +149,7 @@ This package contains the Khronos official OpenCL ICD
Loader.")
(define-public clinfo
(package
(name "clinfo")
- (version "3.0.21.02.21")
+ (version "3.0.25.02.14")
(source
(origin
(method git-fetch)
@@ -158,18 +158,21 @@ This package contains the Khronos official OpenCL ICD
Loader.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1sfxp6ai83i0vwdg7b05h0k07q6873q1z1avnyksj5zmzdnxya6j"))))
+ (base32 "136fx14hcxfk3dab6jhk78j9l0f43zb3qap19mnzdrlqk532njaj"))))
(build-system gnu-build-system)
(native-inputs
(list opencl-headers))
(inputs
(list opencl-icd-loader))
(arguments
- `(#:make-flags
- (list ,(string-append "CC=" (cc-for-target))
- (string-append "PREFIX=" (assoc-ref %outputs "out")))
- #:phases (modify-phases %standard-phases (delete 'configure))
- #:tests? #f))
+ (list
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "CXX=" #$(cxx-for-target))
+ (string-append "PREFIX=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases (delete 'configure))
+ #:tests? #f))
(home-page "https://github.com/Oblomov/clinfo")
(synopsis "Print information about OpenCL platforms and devices")
;; Only the implementation installed via Guix will be detected.