sbcl: 2.4.7 -> 2.4.8

Changes: https://sourceforge.net/p/sbcl/mailman/message/58811388/
This commit is contained in:
Ashish SHUKLA 2024-08-31 14:03:44 +05:30
parent 192e7407cc
commit 129ee13619
No known key found for this signature in database
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

@ -24579,7 +24579,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;