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

Merge pull request #284591 from hraban/sbcl-2.4.1

sbcl: 2.4.0 -> 2.4.1
parents fb15daf1 b3d9b990
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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
+5 −5
Original line number Diff line number Diff line
@@ -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"; };
  sbcl_2_4_0 = wrapLisp {
    pkg = callPackage ../by-name/sb/sbcl/package.nix { version = "2.4.0"; };
    faslExt = "fasl";
    flags = [ "--dynamic-space-size" "3000" ];
  };
  sbcl_2_4_0 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl/2.x.nix { version = "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_0;
  sbcl = sbcl_2_4_1;
  sbclPackages = recurseIntoAttrs sbcl.pkgs;