sbcl: 2.5.3 -> 2.5.4

This commit is contained in:
Hraban Luyat
2025-05-04 13:47:06 -04:00
parent 7e2d7eaf44
commit 272af7802b
2 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -32,12 +32,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.2" = {
sha256 = "sha256-XcJ+un3aQz31P9dEHeixFHSoLNrBaJwfbOVfoGXWX6w=";
};
"2.5.3" = {
sha256 = "sha256-ih5251u3Pq7C3x7gVBqrZGyqEELHHiVqqmf3r/OrFtU=";
};
"2.5.4" = {
sha256 = "sha256-XxS07ZKUKp44dZT6wAC5bbdGfpzlYTBn/8CSPfPsIHI=";
};
};
# 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
@@ -11523,14 +11523,6 @@ with pkgs;
"3000"
];
};
sbcl_2_5_2 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.2"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl_2_5_3 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.3"; };
faslExt = "fasl";
@@ -11539,7 +11531,15 @@ with pkgs;
"3000"
];
};
sbcl = sbcl_2_5_3;
sbcl_2_5_4 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.4"; };
faslExt = "fasl";
flags = [
"--dynamic-space-size"
"3000"
];
};
sbcl = sbcl_2_5_4;
sbclPackages = recurseIntoAttrs sbcl.pkgs;