gnu: chez-scheme: Don't use unstable tarball.
* gnu/packages/chez.scm (chez-scheme)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
fbf4122360
commit
602fbad1e7
|
@ -65,12 +65,13 @@
|
||||||
(version "9.5")
|
(version "9.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/cisco/ChezScheme/archive/"
|
(uri (git-reference
|
||||||
"v" version ".tar.gz"))
|
(url "https://github.com/cisco/ChezScheme.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "135991hspq0grf26pvl2lkwhp92yz204h6rgiwyym0x6v0xzknd1"))
|
(base32 "132fal5hwiq0bqzvfhjsqr4d11cfdh1670f6286ks29xxj1c04zq"))
|
||||||
(file-name (string-append "chez-scheme-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Fix compilation with glibc >= 2.26, which removed xlocale.h.
|
;; Fix compilation with glibc >= 2.26, which removed xlocale.h.
|
||||||
|
|
Loading…
Reference in New Issue