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
|
@ -539,14 +539,16 @@ strings.")
|
||||||
(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
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("chez-scheme" ,chez-scheme)))
|
`(("chez-scheme" ,chez-scheme)))
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Loading…
Reference in New Issue