Unverified Commit ed0eb7fc authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

Merge pull request #323623 from hraban/sbcl/2.4.6

sbcl: 2.4.5 -> 2.4.6
parents 7e2a7926 5614cb99
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,12 +10,12 @@

let
  versionMap = {
    "2.4.4" = {
      sha256 = "sha256-ipMmJ7Px2OlhjxzcIl7csAJFaARpfiyH0UBoN2ShBtU=";
    };
    "2.4.5" = {
      sha256 = "sha256-TfaOkMkDGAdkK0t2GYjetb9qG9FSxHI0goNO+nNae9E=";
    };
    "2.4.6" = {
      sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE=";
    };
  };
  # Collection of pre-built SBCL binaries for platforms that need them for
  # bootstrapping. Ideally these are to be avoided.  If ECL (or any other
+5 −5
Original line number Diff line number Diff line
@@ -25145,17 +25145,17 @@ with pkgs;
  };
  # Steel Bank Common Lisp
  sbcl_2_4_4 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "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_2_4_5 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.4.5"; };
  sbcl_2_4_6 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.4.6"; };
    faslExt = "fasl";
    flags = [ "--dynamic-space-size" "3000" ];
  };
  sbcl = sbcl_2_4_5;
  sbcl = sbcl_2_4_6;
  sbclPackages = recurseIntoAttrs sbcl.pkgs;