@@ -24,6 +24,7 @@ (define-module (gnu packages opencl)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix utils)
+ #:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
@@ -110,14 +111,16 @@ (define-public opencl-clhpp
(base32 "172jxbx78bv6gapxx43bh7ni7zciw010gxx17h47sndhdasbi2bc"))
(file-name (git-file-name name version))))
(native-inputs
- `(("python" ,python-wrapper)))
+ (list python-wrapper))
(propagated-inputs
(list opencl-headers))
(arguments
- `(#:configure-flags (list "-DBUILD_EXAMPLES=OFF" "-DBUILD_TESTS=OFF"
- "-DBUILD_TESTING=OFF") ;; CTest needs this to be turned off
- ;; The regression tests require a lot more dependencies.
- #:tests? #f))
+ (list #:configure-flags #~(list "-DBUILD_EXAMPLES=OFF"
+ "-DBUILD_TESTS=OFF"
+ ;; CTest needs this to be turned off
+ "-DBUILD_TESTING=OFF")
+ ;; The regression tests require a lot more dependencies.
+ #:tests? #f))
(build-system cmake-build-system)
(home-page "https://github.khronos.org/OpenCL-CLHPP/")
(synopsis "Khronos OpenCL-CLHPP")