sbcl: 2.4.7 -> 2.4.8 (#338557)

This commit is contained in:
7c6f434c 2024-09-01 11:36:10 +00:00 committed by GitHub
commit 2c6b12386c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -16,6 +16,9 @@ let
"2.4.7" = {
sha256 = "sha256-aFRNJQNjWs0BXVNMzJsq6faJltQptakGP9Iv8JJQEdI=";
};
"2.4.8" = {
sha256 = "sha256-/G7NzFOOgKFKmY1TDMw4SkF5D09Pxs1//oyxJqZ3aUw=";
};
};
# Collection of pre-built SBCL binaries for platforms that need them for
# bootstrapping. Ideally these are to be avoided. If ECL (or any other

View File

@ -24570,7 +24570,12 @@ with pkgs;
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_4_7;
sbcl_2_4_8 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.4.8"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_4_8;
sbclPackages = recurseIntoAttrs sbcl.pkgs;