sbcl: 2.5.7 -> 2.5.9 (#453099)

This commit is contained in:
7c6f434c
2025-10-18 19:57:52 +00:00
committed by GitHub
2 changed files with 10 additions and 10 deletions
+1 -1
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.5".sha256 = "sha256-ZQJnCvs2G6m+RKL6/pr5tZ57JK5QmnkaZrVIHylVlQs=";
"2.5.7".sha256 = "sha256-xPr+t5VpnVvP+QhQkazHYtz15V+FI1Yl89eu8SyJ0dM=";
"2.5.9".sha256 = "sha256-0bGQItQ9xJPtyXK25ZyTrmaEyWP90rQTsJZeGM1r0eI=";
};
# 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
@@ -9067,14 +9067,6 @@ with pkgs;
"3000"
];
};
sbcl_2_5_5 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.5"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl_2_5_7 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.7"; };
faslExt = "fasl";
@@ -9083,7 +9075,15 @@ with pkgs;
"3000"
];
};
sbcl = sbcl_2_5_7;
sbcl_2_5_9 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.9"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl = sbcl_2_5_9;
sbclPackages = recurseIntoAttrs sbcl.pkgs;