sbcl: 2.4.11 -> 2.5.0

This commit is contained in:
Hraban Luyat
2025-01-11 23:14:19 -05:00
parent abfd150a73
commit 8ac4a94f1b
2 changed files with 12 additions and 3 deletions
+6 -2
View File
@@ -14,14 +14,18 @@ let
"2.4.6" = {
sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE=";
};
# 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.
# Necessary for stumpwm
"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.4.11" = {
sha256 = "sha256-TwPlhG81g0wQcAu+Iy2kG6S9v4G9zKyx1N4kKXZXpBU=";
};
"2.5.0" = {
sha256 = "sha256-Lhiv0Ijkot8ht3uuLhcM5XDRHabSdgcpImXxzGqKGbE=";
};
};
# 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 -1
View File
@@ -11135,7 +11135,12 @@ with pkgs;
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_4_11;
sbcl_2_5_0 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.5.0"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_5_0;
sbclPackages = recurseIntoAttrs sbcl.pkgs;