mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05: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:
parent
4d2c51dec2
commit
9769caa991
1 changed files with 6 additions and 6 deletions
|
@ -1612,13 +1612,13 @@ (define-public sbcl-trivial-features
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue