gnu: rocm-opencl-runtime: Use a non-redirecting source URL.
* gnu/packages/rocm.scm (rocm-opencl-runtime)[source]: Use 'home-page' as the URL; since it lacks the ".git" prefix, that placates 'guix lint'.
parent
d39b95b1c2
commit
9b54559e23
|
@ -258,10 +258,11 @@ allows runtimes to work on Windows as well as on Linux without much effort.")
|
||||||
(package
|
(package
|
||||||
(name "rocm-opencl-runtime")
|
(name "rocm-opencl-runtime")
|
||||||
(version %rocm-version)
|
(version %rocm-version)
|
||||||
|
(home-page "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime.git")
|
(url home-page)
|
||||||
(commit (string-append "rocm-" version))))
|
(commit (string-append "rocm-" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
|
@ -299,7 +300,6 @@ allows runtimes to work on Windows as well as on Linux without much effort.")
|
||||||
("ocl-icd" ,ocl-icd)
|
("ocl-icd" ,ocl-icd)
|
||||||
("glew" ,glew)))
|
("glew" ,glew)))
|
||||||
(native-inputs `())
|
(native-inputs `())
|
||||||
(home-page "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime")
|
|
||||||
(synopsis "ROCm OpenCL Runtime")
|
(synopsis "ROCm OpenCL Runtime")
|
||||||
(description "OpenCL 2.0 compatible language runtime, supporting offline
|
(description "OpenCL 2.0 compatible language runtime, supporting offline
|
||||||
and in-process/in-memory compilation.")
|
and in-process/in-memory compilation.")
|
||||||
|
|
Reference in New Issue