sbcl: 2.5.4 -> 2.5.5 (#415084)

This commit is contained in:
7c6f434c
2025-06-12 13:44:29 +00:00
committed by GitHub
2 changed files with 13 additions and 21 deletions
+4 -12
View File
@@ -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
+9 -9
View File
@@ -10026,14 +10026,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";
@@ -10042,7 +10034,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;