gnu: sbcl-trivial-features: Don't use unstable tarball.
* gnu/packages/lisp.scm (sbcl-trivial-features)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
4d2c51dec2
commit
9769caa991
|
@ -1612,13 +1612,13 @@ utilities that make it even easier to manipulate text in Common Lisp. It has
|
||||||
(version "0.8")
|
(version "0.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/trivial-features/trivial-features/archive/v"
|
(url "https://github.com/trivial-features/trivial-features.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name "trivial-features" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0db1awn6jyhcfhyfvpjvfziprmq85cigf19mwbvaprhblydsag3c"))
|
(base32 "0ccv7dqyrk55xga78i5vzlic7mdwp28in3g1a8fqhlk6626scsq9"))))
|
||||||
(file-name (string-append "trivial-features-" version ".tar.gz"))))
|
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(arguments '(#:tests? #f))
|
(arguments '(#:tests? #f))
|
||||||
(home-page "http://cliki.net/trivial-features")
|
(home-page "http://cliki.net/trivial-features")
|
||||||
|
|
Loading…
Reference in New Issue