diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 04:42:09 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 05:11:31 +0200 |
commit | 0458ec2b031401f269f0429be01ee3efee817ad6 (patch) | |
tree | bcc9c6087e68f7788d4994247481addd8f3d8dfb | |
parent | 0924b5bc1bfb9170a5f7d6562c209a4728bdf5f5 (diff) | |
download | guix-0458ec2b031401f269f0429be01ee3efee817ad6.tar.gz guix-0458ec2b031401f269f0429be01ee3efee817ad6.zip |
gnu: sbcl-hunchentoot: Don't use unstable tarball.
* gnu/packages/lisp.scm (sbcl-hunchentoot)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/lisp.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index eab16dd9cf..558f3a04d2 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -4178,12 +4178,13 @@ sockets, SSL, continuable uploads, file uploads, cookies, and more.") (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) |