Merge pull request #315896 from hraban/sbcl/2.4.5

sbcl: 2.4.4 -> 2.4.5
This commit is contained in:
7c6f434c 2024-06-02 17:43:13 +00:00 committed by GitHub
commit ab718775cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

View File

@ -19,12 +19,12 @@
let
versionMap = {
"2.4.3" = {
sha256 = "sha256-icmq35K4KtPHSj1PFYoDiJPeoOTzlNyvyWNYPDC3w/I=";
};
"2.4.4" = {
sha256 = "sha256-ipMmJ7Px2OlhjxzcIl7csAJFaARpfiyH0UBoN2ShBtU=";
};
"2.4.5" = {
sha256 = "sha256-TfaOkMkDGAdkK0t2GYjetb9qG9FSxHI0goNO+nNae9E=";
};
};
# 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

@ -25284,17 +25284,17 @@ with pkgs;
};
# Steel Bank Common Lisp
sbcl_2_4_3 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.4.3"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl_2_4_4 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.4.4"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_4_4;
sbcl_2_4_5 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl { version = "2.4.5"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_4_5;
sbclPackages = recurseIntoAttrs sbcl.pkgs;