gnu: sbcl-cffi-bootstrap: Don't use unstable tarball.
* gnu/packages/lisp.scm (sbcl-cffi-bootstrap)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
be0997278b
commit
0924b5bc1b
|
@ -2979,12 +2979,13 @@ non-consing thread safe queues and fibonacci priority queues.")
|
||||||
(version "0.19.0")
|
(version "0.19.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/cffi/cffi/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/cffi/cffi.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name "cffi-bootstrap" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "07bc3c1fbfx17wgrvx6bh9byilfzfwv5n597cfdllm0vzwvbmiyk"))
|
(base32 "09sfgc6r7ihmbkwfpvkq5fxc7h45cabpvgbvs47i5cvnmv3k72xy"))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(inputs
|
(inputs
|
||||||
`(("libffi" ,libffi)
|
`(("libffi" ,libffi)
|
||||||
|
|
Loading…
Reference in New Issue