Merge pull request #284591 from hraban/sbcl-2.4.1

sbcl: 2.4.0 -> 2.4.1
This commit is contained in:
7c6f434c 2024-01-30 00:18:08 +00:00 committed by GitHub
commit 7e913c43b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 10 deletions

View File

@ -19,12 +19,12 @@ let
sha256 = "189gjqzdz10xh3ybiy4ch1r98bsmkcb4hpnrmggd4y2g5kqnyx4y";
};
"2.3.11" = {
sha256 = "sha256-hL7rjXLIeJeEf8AoWtyz+k9IG9s5ECxPuat5aEGErSk=";
};
"2.4.0" = {
sha256 = "sha256-g9i3TwjSJUxZuXkLwfZp4JCZRXuIRyDs7L9F9LRtF3Y=";
};
"2.4.1" = {
sha256 = "sha256-2k+UhvrUE9OversbCSaTJf20v/fnuI8hld3udDJjz34=";
};
};
# Collection of pre-built SBCL binaries for platforms that need them for
# bootstrapping. Ideally these are to be avoided. If CLISP (or any other

View File

@ -26026,17 +26026,17 @@ with pkgs;
};
# Steel Bank Common Lisp
sbcl_2_3_11 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl/2.x.nix { version = "2.3.11"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl_2_4_0 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl/2.x.nix { version = "2.4.0"; };
pkg = callPackage ../by-name/sb/sbcl/package.nix { version = "2.4.0"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_4_0;
sbcl_2_4_1 = wrapLisp {
pkg = callPackage ../by-name/sb/sbcl/package.nix { version = "2.4.1"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_4_1;
sbclPackages = recurseIntoAttrs sbcl.pkgs;