me
/
guix
Archived
1
0
Fork 0

gnu: sbcl-parse-number: Don't use unstable tarball.

* gnu/packages/lisp.scm (sbcl-parse-number)[source]: Download using
git-fetch.
master
Efraim Flashner 2019-11-28 15:42:02 +02:00
parent 040a7440d6
commit a32e8b2550
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 5 deletions

View File

@ -1472,13 +1472,14 @@ JavaScript (ECMAScript 3). It has basic support for ECMAScript 5.")
(version "1.5") (version "1.5")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/sharplispers/parse-number/" (uri (git-reference
"archive/v" version ".tar.gz")) (url "https://github.com/sharplispers/parse-number/")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1k6s4v65ksc1j5i0dprvzfvj213v6nah7i0rgd0726ngfjisj9ir")))) "046qkppyakm2pgjxgxba4q7inp6dd3g628pkdj10z7v5zbjw3da9"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(home-page "http://www.cliki.net/PARSE-NUMBER") (home-page "http://www.cliki.net/PARSE-NUMBER")
(synopsis "Parse numbers") (synopsis "Parse numbers")