From 2c6a9ad2f0318a23e79bee96f28a56ea66aad359 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 30 Jun 2022 13:51:50 +0200 Subject: 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. --- gnu/packages/lisp.scm | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'gnu/packages/lisp.scm') diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 3c43f8fa4c..715ba14201 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -413,14 +413,14 @@ (define-public clisp (define-public sbcl (package (name "sbcl") - (version "2.2.2") + (version "2.2.6") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-" version "-source.tar.bz2")) (sha256 - (base32 "1xjhg473ibfiplvvyg1grxrh0nqqbg72acc2pcacw7bijyzdp447")))) + (base32 "18044dqx37mkipnrzs7jrp0cbnwp6snb5gi06a8zn9m8iy6088ry")))) (build-system gnu-build-system) (outputs '("out" "doc")) (native-inputs @@ -445,18 +445,19 @@ (define-public sbcl ;; to make it easier to change the host compiler for various ;; architectures. Consider switching to ECL if it gets faster than CLISP ;; (maybe post 2020 release). - `(,@(match (%current-system) - ((or "x86_64-linux" "i686-linux") - `(("clisp" ,clisp))) - (_ - `(("clisp" ,clisp)))) - ("cl-asdf" ,cl-asdf) - ("ed" ,ed) - ("inetutils" ,inetutils) ;for hostname(1) - ("texinfo" ,texinfo) - ("texlive" ,(texlive-updmap.cfg (list texlive-tex-texinfo))) - ("which" ,which) - ("zlib" ,zlib))) + (list (match (%current-system) + ((or "x86_64-linux" "i686-linux") + clisp) + (_ + clisp)) + cl-asdf + ed + inetutils ;for hostname(1) + texinfo + (texlive-updmap.cfg (list texlive-tex-texinfo)) + which)) + (inputs + (list (list zstd "lib"))) (arguments `(#:modules ((guix build gnu-build-system) (guix build utils) -- cgit v1.2.3