mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: sbcl-hunchentoot: Don't use unstable tarball.
* gnu/packages/lisp.scm (sbcl-hunchentoot)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
0924b5bc1b
commit
0458ec2b03
1 changed files with 6 additions and 5 deletions
|
@ -4178,12 +4178,13 @@ (define-public sbcl-hunchentoot
|
|||
(version "1.2.38")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/edicl/hunchentoot/archive/v"
|
||||
version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/edicl/hunchentoot.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name "hunchentoot" version))
|
||||
(sha256
|
||||
(base32 "17z8rpd6b5w93jwrdwfwxjha617xnjqw8aq1hw2z76zp1fn8yrmh"))))
|
||||
(base32 "1anpcad7w045m4rsjs1f3xdhjwx5cppq1h0vlb3q7dz81fi3i6yq"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
`(("sbcl-cl-who" ,sbcl-cl-who)
|
||||
|
|
Loading…
Reference in a new issue