sbcl: 2.5.1 -> 2.5.2 (#386598)

This commit is contained in:
7c6f434c
2025-03-04 11:20:44 +00:00
committed by GitHub
2 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -20,12 +20,12 @@ let
};
# 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.0" = {
sha256 = "sha256-Lhiv0Ijkot8ht3uuLhcM5XDRHabSdgcpImXxzGqKGbE=";
};
"2.5.1" = {
sha256 = "sha256-QTOzbNFtFNYzlpw3/VHCyJqOpdbhYRVSgZ2R9xshn4s=";
};
"2.5.2" = {
sha256 = "sha256-XcJ+un3aQz31P9dEHeixFHSoLNrBaJwfbOVfoGXWX6w=";
};
};
# Collection of pre-built SBCL binaries for platforms that need them for
# bootstrapping. Ideally these are to be avoided. If ECL (or any other
+6 -6
View File
@@ -10988,17 +10988,17 @@ with pkgs;
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl_2_5_0 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.0"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl_2_5_1 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.1"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_5_1;
sbcl_2_5_2 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.2"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_5_2;
sbclPackages = recurseIntoAttrs sbcl.pkgs;