Skip to content
Snippets Groups Projects
Unverified Commit 88c85a94 authored by Tobias Geerinckx-Rice's avatar Tobias Geerinckx-Rice
Browse files

gnu: chez-matchable: Don't use unstable tarball.

* gnu/packages/chez.scm (chez-matchable)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
parent f01b17b3
No related branches found
No related tags found
No related merge requests found
...@@ -435,11 +435,13 @@ (define-public chez-matchable ...@@ -435,11 +435,13 @@ (define-public chez-matchable
(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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment