gnu: sbcl-babel: Don't use unstable tarball.

* gnu/packages/lisp.scm (sbcl-babel)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-09 00:20:56 +02:00
parent 9769caa991
commit 0471c00109
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -1699,13 +1699,13 @@ with a focus on interactive development.")
(version "0.5.0") (version "0.5.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/cl-babel/babel/archive/v" (url "https://github.com/cl-babel/babel.git")
version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name "babel" version))
(sha256 (sha256
(base32 "189kgbmslh36xx0d2i1g6a7mcvjryvjzkdlnhilqy5xs7hkyqirq")) (base32 "139a8rn2gnhj082n8jg01gc8fyr63hkj57hgrnmb3d1r327yc77f"))))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(native-inputs (native-inputs
`(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil))) `(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))