3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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

View file

@ -1612,13 +1612,13 @@ utilities that make it even easier to manipulate text in Common Lisp. It has
(version "0.8")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/trivial-features/trivial-features/archive/v"
version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/trivial-features/trivial-features.git")
(commit (string-append "v" version))))
(file-name (git-file-name "trivial-features" version))
(sha256
(base32 "0db1awn6jyhcfhyfvpjvfziprmq85cigf19mwbvaprhblydsag3c"))
(file-name (string-append "trivial-features-" version ".tar.gz"))))
(base32 "0ccv7dqyrk55xga78i5vzlic7mdwp28in3g1a8fqhlk6626scsq9"))))
(build-system asdf-build-system/sbcl)
(arguments '(#:tests? #f))
(home-page "http://cliki.net/trivial-features")