From 95825b452b868d54056b74736e556db208d7996c Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Sun, 8 Jun 2025 14:17:12 -0400 Subject: [PATCH] sbcl: 2.5.4 -> 2.5.5 --- pkgs/development/compilers/sbcl/default.nix | 16 ++++------------ pkgs/top-level/all-packages.nix | 18 +++++++++--------- 2 files changed, 13 insertions(+), 21 deletions(-) diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 26ff6f45891d..d1a5e9bd3928 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -24,21 +24,13 @@ let versionMap = { # Necessary for Nyxt - "2.4.6" = { - sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE="; - }; + "2.4.6".sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE="; # Necessary for stumpwm - "2.4.10" = { - sha256 = "sha256-zus5a2nSkT7uBIQcKva+ylw0LOFGTD/j5FPy3hDF4vg="; - }; + "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.5.2" = { - sha256 = "sha256-XcJ+un3aQz31P9dEHeixFHSoLNrBaJwfbOVfoGXWX6w="; - }; - "2.5.4" = { - sha256 = "sha256-XxS07ZKUKp44dZT6wAC5bbdGfpzlYTBn/8CSPfPsIHI="; - }; + "2.5.4".sha256 = "sha256-XxS07ZKUKp44dZT6wAC5bbdGfpzlYTBn/8CSPfPsIHI="; + "2.5.5".sha256 = "sha256-ZQJnCvs2G6m+RKL6/pr5tZ57JK5QmnkaZrVIHylVlQs="; }; # 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 c4c22adf0c47..cc8464533694 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10053,14 +10053,6 @@ with pkgs; "3000" ]; }; - sbcl_2_5_2 = wrapLisp { - pkg = callPackage ../development/compilers/sbcl { version = "2.5.2"; }; - faslExt = "fasl"; - flags = [ - "--dynamic-space-size" - "3000" - ]; - }; sbcl_2_5_4 = wrapLisp { pkg = callPackage ../development/compilers/sbcl { version = "2.5.4"; }; faslExt = "fasl"; @@ -10069,7 +10061,15 @@ with pkgs; "3000" ]; }; - sbcl = sbcl_2_5_4; + sbcl_2_5_5 = wrapLisp { + pkg = callPackage ../development/compilers/sbcl { version = "2.5.5"; }; + faslExt = "fasl"; + flags = [ + "--dynamic-space-size" + "3000" + ]; + }; + sbcl = sbcl_2_5_5; sbclPackages = recurseIntoAttrs sbcl.pkgs;