raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 95a86b9bab598f8d6b1414f489e901354626dfe9
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Wed Aug 11 09:41:38 2021 +0200
gnu: opencl-clhpp: Update to 2.0.15.
Note that this version bump removes the deprecated cl.hpp header
interface.
* gnu/packages/opencl.scm (opencl-clhpp): Update to 2.0.15.
[#:configure-flags]: Remove prefix.
---
gnu/packages/opencl.scm | 13 +++----------
1 file changed, 3 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/opencl.scm b/gnu/packages/opencl.scm
index 4535f03..484a766 100644
--- a/gnu/packages/opencl.scm
+++ b/gnu/packages/opencl.scm
@@ -95,7 +95,7 @@
(define-public opencl-clhpp
(package
(name "opencl-clhpp")
- (version "2.0.10")
+ (version "2.0.15")
(source
(origin
(method git-fetch)
@@ -103,21 +103,14 @@
(url "https://github.com/KhronosGroup/OpenCL-CLHPP")
(commit (string-append "v" version))))
(sha256
- (base32 "0h5kpg5cl8wzfnqmv6i26aig2apv06ffm9p3rh35938n9r8rladm"))
+ (base32 "1wycdbvwbdn7lqdd3sby8471qg2zdisr70218ava6cfvxdsqcp83"))
(file-name (git-file-name name version))))
(native-inputs
`(("python" ,python-wrapper)))
(propagated-inputs
`(("opencl-headers" ,opencl-headers)))
(arguments
- `(#:configure-flags
- (let ((out (assoc-ref %outputs "out")))
- (list
- "-DBUILD_EXAMPLES=OFF"
- "-DBUILD_TESTS=OFF"
- (string-append "-DCMAKE_INSTALL_PREFIX="
- (assoc-ref %outputs "out")
- "/include")))
+ `(#:configure-flags (list "-DBUILD_EXAMPLES=OFF" "-DBUILD_TESTS=OFF")
;; The regression tests require a lot more dependencies.
#:tests? #f))
(build-system cmake-build-system)