sbcl: 2.6.0 -> 2.6.1

This commit is contained in:
Hraban
2026-01-27 02:37:43 -05:00
parent 8913af27d0
commit 292fe2bd1f
2 changed files with 10 additions and 10 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.10".sha256 = "sha256-v1+0nypC82s+AD0uTSNDhq3fB9ndjKhjRlaSfMls4SU=";
"2.6.0".sha256 = "sha256-CkvVsByI5rRcLwWWBdJyirk3emUpsupiKnq7W6LWkcY=";
"2.6.1".sha256 = "sha256-XyzVu30+bZFJpZwFrNhCmzvhhJIRdp5aN0UdAB4ZbX8=";
};
# 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
@@ -8296,14 +8296,6 @@ with pkgs;
];
};
sbcl_2_5_10 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.10"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl_2_6_0 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.6.0"; };
@@ -8313,7 +8305,15 @@ with pkgs;
"3000"
];
};
sbcl = sbcl_2_6_0;
sbcl_2_6_1 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.6.1"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl = sbcl_2_6_1;
sbclPackages = recurseIntoAttrs sbcl.pkgs;