mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: sbcl-fiveam: Don't use unstable tarball.
* gnu/packages/lisp.scm (sbcl-fiveam)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
8fa2bcc793
commit
02fbb5c304
1 changed files with 6 additions and 6 deletions
|
@ -691,13 +691,13 @@ (define-public sbcl-fiveam
|
||||||
(version "1.2")
|
(version "1.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/sionescu/fiveam/archive/v"
|
(url "https://github.com/sionescu/fiveam.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name "fiveam" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0f48pcbhqs3wwwzjl5nk57d4hcbib4l9xblxc66b8c2fhvhmhxnv"))
|
(base32 "1yx9716mk8pq9076q6cjx4c9lyax3amiccy37sh0913k2x8gsm4l"))))
|
||||||
(file-name (string-append "fiveam-" version ".tar.gz"))))
|
|
||||||
(inputs `(("alexandria" ,sbcl-alexandria)))
|
(inputs `(("alexandria" ,sbcl-alexandria)))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(synopsis "Common Lisp testing framework")
|
(synopsis "Common Lisp testing framework")
|
||||||
|
|
Loading…
Reference in a new issue