sbcl: 2.5.9 -> 2.5.10

This commit is contained in:
Hraban Luyat 2025-11-08 12:33:36 -05:00
parent bf0d024cad
commit f789192d2b
2 changed files with 10 additions and 10 deletions

View file

@ -29,8 +29,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.5.7".sha256 = "sha256-xPr+t5VpnVvP+QhQkazHYtz15V+FI1Yl89eu8SyJ0dM=";
"2.5.9".sha256 = "sha256-0bGQItQ9xJPtyXK25ZyTrmaEyWP90rQTsJZeGM1r0eI=";
"2.5.10".sha256 = "sha256-v1+0nypC82s+AD0uTSNDhq3fB9ndjKhjRlaSfMls4SU=";
};
# Collection of pre-built SBCL binaries for platforms that need them for
# bootstrapping. Ideally these are to be avoided. If ECL (or any other

View file

@ -9071,14 +9071,6 @@ with pkgs;
"3000"
];
};
sbcl_2_5_7 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.7"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl_2_5_9 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.9"; };
faslExt = "fasl";
@ -9087,7 +9079,15 @@ with pkgs;
"3000"
];
};
sbcl = sbcl_2_5_9;
sbcl_2_5_10 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.10"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl = sbcl_2_5_10;
sbclPackages = recurseIntoAttrs sbcl.pkgs;