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

* gnu/packages/chez.scm (chez-irregex)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-02-15 17:29:17 +01:00
parent 88c85a9403
commit 24a43551d0
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -464,13 +464,13 @@ (define-public chez-irregex
(version "0.9.4") (version "0.9.4")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/fedeinthemix/chez-irregex/archive" (url "https://github.com/fedeinthemix/chez-irregex.git")
"/v" version ".tar.gz")) (commit (string-append "v" version))))
(sha256 (sha256
(base32 "0ywy5syaw549a58viz68dmgnv756ic705rcnlqxgjq27lnaim53b")) (base32 "0jh6piylw545j81llay9wfivgpv6lcnwd81gm4w17lkasslir50q"))
(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-matchable" ,chez-matchable))) ; for tests `(("chez-matchable" ,chez-matchable))) ; for tests