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:
Tobias Geerinckx-Rice 2019-04-09 00:20:50 +02:00
parent 4d2c51dec2
commit 9769caa991
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -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")