gnu: sbcl: Update to 2.2.6.
* gnu/packages/lisp.scm (sbcl): Update to 2.2.6. [native-inputs]: Remove zlib. Remove labels. [inputs]: Add zstd:lib.master
parent
49ecf1cbee
commit
2c6a9ad2f0
|
@ -413,14 +413,14 @@ an interpreter, a compiler, a debugger, and much more.")
|
||||||
(define-public sbcl
|
(define-public sbcl
|
||||||
(package
|
(package
|
||||||
(name "sbcl")
|
(name "sbcl")
|
||||||
(version "2.2.2")
|
(version "2.2.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-"
|
(uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-"
|
||||||
version "-source.tar.bz2"))
|
version "-source.tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1xjhg473ibfiplvvyg1grxrh0nqqbg72acc2pcacw7bijyzdp447"))))
|
(base32 "18044dqx37mkipnrzs7jrp0cbnwp6snb5gi06a8zn9m8iy6088ry"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -445,18 +445,19 @@ an interpreter, a compiler, a debugger, and much more.")
|
||||||
;; to make it easier to change the host compiler for various
|
;; to make it easier to change the host compiler for various
|
||||||
;; architectures. Consider switching to ECL if it gets faster than CLISP
|
;; architectures. Consider switching to ECL if it gets faster than CLISP
|
||||||
;; (maybe post 2020 release).
|
;; (maybe post 2020 release).
|
||||||
`(,@(match (%current-system)
|
(list (match (%current-system)
|
||||||
((or "x86_64-linux" "i686-linux")
|
((or "x86_64-linux" "i686-linux")
|
||||||
`(("clisp" ,clisp)))
|
clisp)
|
||||||
(_
|
(_
|
||||||
`(("clisp" ,clisp))))
|
clisp))
|
||||||
("cl-asdf" ,cl-asdf)
|
cl-asdf
|
||||||
("ed" ,ed)
|
ed
|
||||||
("inetutils" ,inetutils) ;for hostname(1)
|
inetutils ;for hostname(1)
|
||||||
("texinfo" ,texinfo)
|
texinfo
|
||||||
("texlive" ,(texlive-updmap.cfg (list texlive-tex-texinfo)))
|
(texlive-updmap.cfg (list texlive-tex-texinfo))
|
||||||
("which" ,which)
|
which))
|
||||||
("zlib" ,zlib)))
|
(inputs
|
||||||
|
(list (list zstd "lib")))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build gnu-build-system)
|
`(#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
|
|
Reference in New Issue