mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: llvm: Update download URI.
New and old releases are now only available on GitHub. * gnu/packages/llvm.scm (llvm-uri): Remove "releases.llvm.org".
This commit is contained in:
parent
ce7b18837c
commit
4c4d1f6952
1 changed files with 2 additions and 5 deletions
|
@ -86,11 +86,8 @@ (define* (system->llvm-target #:optional
|
|||
("i586" => "X86"))))
|
||||
|
||||
(define (llvm-uri component version)
|
||||
(if (version>=? version "9.0.1")
|
||||
(string-append "https://github.com/llvm/llvm-project/releases/download"
|
||||
"/llvmorg-" version "/" component "-" version ".src.tar.xz")
|
||||
(string-append "https://releases.llvm.org/" version "/" component "-"
|
||||
version ".src.tar.xz")))
|
||||
(string-append "https://github.com/llvm/llvm-project/releases/download"
|
||||
"/llvmorg-" version "/" component "-" version ".src.tar.xz"))
|
||||
|
||||
(define* (clang-runtime-from-llvm llvm hash
|
||||
#:optional (patches '()))
|
||||
|
|
Loading…
Reference in a new issue