mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Chibi-Scheme: Do not use unstable tarball.
* gnu/packages/scheme.scm (chibi-scheme)[source]: Change to GIT-FETCH.
This commit is contained in:
parent
cf822f4d92
commit
c9b9ef0a19
1 changed files with 6 additions and 6 deletions
|
@ -591,14 +591,15 @@ (define-public chibi-scheme
|
||||||
(package
|
(package
|
||||||
(name "chibi-scheme")
|
(name "chibi-scheme")
|
||||||
(version "0.8")
|
(version "0.8")
|
||||||
|
(home-page "https://github.com/ashinn/chibi-scheme")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/ashinn/chibi-scheme/archive/"
|
(uri (git-reference (url home-page) (commit version)))
|
||||||
version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0mi73543m1gap3bwvivq77vhqk7yn28v6g947h96q893n5cph1wa"))
|
(base32
|
||||||
(file-name (string-append "chibi-scheme-" version ".tar.gz"))))
|
"0269d5fhaz7nqjb41vh7yz63mp5s4z08fn4sspwc06z32xksigw9"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
@ -610,7 +611,6 @@ (define-public chibi-scheme
|
||||||
(list (string-append "PREFIX=" out)
|
(list (string-append "PREFIX=" out)
|
||||||
(string-append "LDFLAGS=-Wl,-rpath=" out "/lib")))
|
(string-append "LDFLAGS=-Wl,-rpath=" out "/lib")))
|
||||||
#:test-target "test"))
|
#:test-target "test"))
|
||||||
(home-page "https://github.com/ashinn/chibi-scheme")
|
|
||||||
(synopsis "Small embeddable Scheme implementation")
|
(synopsis "Small embeddable Scheme implementation")
|
||||||
(description
|
(description
|
||||||
"Chibi-Scheme is a very small library with no external dependencies
|
"Chibi-Scheme is a very small library with no external dependencies
|
||||||
|
|
Loading…
Reference in a new issue