gnu: chez-matchable: Don't use unstable tarball.
* gnu/packages/chez.scm (chez-matchable)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
f01b17b374
commit
88c85a9403
1 changed files with 6 additions and 4 deletions
|
|
@ -435,11 +435,13 @@ Chez Scheme.")
|
||||||
(home-page "https://github.com/fedeinthemix/chez-matchable")
|
(home-page "https://github.com/fedeinthemix/chez-matchable")
|
||||||
(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 "0cl4vc6487pikjq159pj4n5ghyaax31nywb5n4yn1682h3ir1hs0"))
|
(base32 "02qn7x348p23z1x5lwhkyj7i8z6mgwpzpnwr8dyina0yzsdkr71s"))
|
||||||
(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
|
||||||
|
|
|
||||||
Reference in a new issue