diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-07-08 15:30:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-07-08 15:33:35 +0200 |
commit | 69e3512b7c66923111a32fdee34b716a8a753bfd (patch) | |
tree | 59908616489a13fa83e169138f75d1ecbf123a76 | |
parent | e2170c3192abd0cbb953265f0b516f6569e4c906 (diff) | |
download | patches-69e3512b7c66923111a32fdee34b716a8a753bfd.tar patches-69e3512b7c66923111a32fdee34b716a8a753bfd.tar.gz |
gnu: libomp: Download over HTTPS.
* gnu/packages/llvm.scm (libomp)[source]: Use HTTPS.
-rw-r--r-- | gnu/packages/llvm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index ca306469de..1fe9af38e0 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -332,7 +332,7 @@ requirements according to version 1.1 of the OpenCL specification.") (version (package-version llvm)) (source (origin (method url-fetch) - (uri (string-append "http://releases.llvm.org/" + (uri (string-append "https://releases.llvm.org/" version "/openmp-" version ".src.tar.xz")) (sha256 |