diff options
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index bf2ffd0f9b..e4227f2c8a 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -925,7 +925,7 @@ interface to the Tk widget system.") (define-public janet (package (name "janet") - (version "1.38.0") + (version "1.39.1") (source (origin (method git-fetch) @@ -934,7 +934,7 @@ interface to the Tk widget system.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1ym852ns8s1m4br33yzw4ak475j5y8svh7bpzd22mhbaqqbc3drw")))) + (base32 "03mnza3fbgngr389mri12vq1jn7cf7a2a1a45gkbnzzxwjwh7pqx")))) (build-system gnu-build-system) (arguments (list #:make-flags @@ -1405,14 +1405,16 @@ be built as a stand-alone REPL interpreter.") (define-public sbcl (package (name "sbcl") - (version "2.5.2") + (version "2.5.8") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-" version "-source.tar.bz2")) (sha256 - (base32 "1b2zsrjs0pz5dhgrqs61v8nahx0ln7l1si6p7zskshysgnx7xhjx")) + (base32 "1bm9hvsrg21mzqhcayiyghz0nkfp43ks840p0bg3bxlma22kwq57")) + ;; TODO: Remove this patch when upgrading to SBCL > 2.5.8. + (patches (search-patches "sbcl-fix-arm64-shared-lib.patch")) (modules '((guix build utils))) (snippet '(begin @@ -1703,7 +1705,7 @@ the HTML documentation of TXR.") (define-public txr (package (name "txr") - (version "300") + (version "302") (source (origin (method git-fetch) @@ -1712,7 +1714,7 @@ the HTML documentation of TXR.") (commit (string-append "txr-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1cxdsk31wj8874nijwbcx7c3zsspsclr722jbaivisrm2wx5hbqn")))) + (base32 "01h09lbpgyzv64m8ycpr2vavdpdxhxdgvmc3p0jqrkvnrzhkdlhj")))) (build-system gnu-build-system) (arguments (list #:configure-flags |