mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: chez-mit: Don't use unstable tarball.
* gnu/packages/chez.scm (chez-mit)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
602fbad1e7
commit
c83bf1c659
1 changed files with 7 additions and 5 deletions
|
@ -539,11 +539,13 @@ (define-public chez-mit
|
||||||
(home-page "https://github.com/fedeinthemix/chez-mit")
|
(home-page "https://github.com/fedeinthemix/chez-mit")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append home-page "/archive/v" version ".tar.gz"))
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1p11q061znwxzxrxg3vw4dbsnpv1dav12hjhnkrjnzyyjvvdm2kn"))
|
(base32 "0c7i3b6i90xk96nmxn1pc9272a4yal4v40dm1a4ybdi87x53zkk0"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("chez-srfi" ,chez-srfi))) ; for tests
|
`(("chez-srfi" ,chez-srfi))) ; for tests
|
||||||
|
|
Loading…
Reference in a new issue