sbcl: 2.5.10 -> 2.6.0 (#476516)

This commit is contained in:
7c6f434c
2026-01-03 12:30:35 +00:00
committed by GitHub
2 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -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.5.9".sha256 = "sha256-0bGQItQ9xJPtyXK25ZyTrmaEyWP90rQTsJZeGM1r0eI=";
"2.5.10".sha256 = "sha256-v1+0nypC82s+AD0uTSNDhq3fB9ndjKhjRlaSfMls4SU=";
"2.6.0".sha256 = "sha256-CkvVsByI5rRcLwWWBdJyirk3emUpsupiKnq7W6LWkcY=";
};
# Collection of pre-built SBCL binaries for platforms that need them for
# bootstrapping. Ideally these are to be avoided. If ECL (or any other
+10 -10
View File
@@ -8642,15 +8642,6 @@ with pkgs;
];
};
sbcl_2_5_9 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.9"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl_2_5_10 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.10"; };
faslExt = "fasl";
@@ -8659,7 +8650,16 @@ with pkgs;
"3000"
];
};
sbcl = sbcl_2_5_10;
sbcl_2_6_0 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.6.0"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl = sbcl_2_6_0;
sbclPackages = recurseIntoAttrs sbcl.pkgs;