From bfb5cca84ea45d911a2badd9932ad2f064139e12 Mon Sep 17 00:00:00 2001 From: Hraban Date: Sun, 31 May 2026 17:24:14 -0400 Subject: [PATCH] sbcl: 2.6.4 -> 2.6.5 --- pkgs/development/compilers/sbcl/default.nix | 2 +- pkgs/top-level/all-packages.nix | 19 +++++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 36963b65f8d7..73d3cc08df88 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -30,8 +30,8 @@ let "2.4.10".sha256 = "sha256-zus5a2nSkT7uBIQcKva+ylw0LOFGTD/j5FPy3hDF4vg="; # By unofficial and very loose convention we keep the latest version of # SBCL, and the previous one in case someone quickly needs to roll back. - "2.6.3".sha256 = "sha256-50MvtkKVLdJaX8DFbSGPPQqlls5C0z76gwkbyn1pmIo="; "2.6.4".sha256 = "sha256-O6U+ZUtg/rfE9QRmGZ1tUmDyZhxxG6ItS3cLZVQA1Xs="; + "2.6.5".sha256 = "sha256-kex19kclLtbmrq6bGhP0fHxs/ZtoSI3Gnxpv6lrMtEA="; }; # Collection of pre-built SBCL binaries for platforms that need them for # bootstrapping. Ideally these are to be avoided. If ECL (or any other diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8d0e11e21108..63838e08073a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7537,15 +7537,6 @@ with pkgs; ]; }; - sbcl_2_6_3 = wrapLisp { - pkg = callPackage ../development/compilers/sbcl { version = "2.6.3"; }; - - faslExt = "fasl"; - flags = [ - "--dynamic-space-size" - "3000" - ]; - }; sbcl_2_6_4 = wrapLisp { pkg = callPackage ../development/compilers/sbcl { version = "2.6.4"; }; faslExt = "fasl"; @@ -7554,7 +7545,15 @@ with pkgs; "3000" ]; }; - sbcl = sbcl_2_6_4; + sbcl_2_6_5 = wrapLisp { + pkg = callPackage ../development/compilers/sbcl { version = "2.6.5"; }; + faslExt = "fasl"; + flags = [ + "--dynamic-space-size" + "3000" + ]; + }; + sbcl = sbcl_2_6_5; sbclPackages = recurseIntoAttrs sbcl.pkgs;