Commit f35c7c4c authored by Hraban Luyat's avatar Hraban Luyat
Browse files

sbcl: 2.4.2 -> 2.4.3

parent 807c549f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -24,12 +24,12 @@ let
      sha256 = "189gjqzdz10xh3ybiy4ch1r98bsmkcb4hpnrmggd4y2g5kqnyx4y";
    };

    "2.4.1" = {
      sha256 = "sha256-2k+UhvrUE9OversbCSaTJf20v/fnuI8hld3udDJjz34=";
    };
    "2.4.2" = {
      sha256 = "sha256-/APLUtEqr+h1nmMoRQogG73fibFwcaToPznoC0Pd7w8=";
    };
    "2.4.3" = {
      sha256 = "sha256-icmq35K4KtPHSj1PFYoDiJPeoOTzlNyvyWNYPDC3w/I=";
    };
  };
  # 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
@@ -25611,17 +25611,17 @@ with pkgs;
  };
  # Steel Bank Common Lisp
  sbcl_2_4_1 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.4.1"; };
  sbcl_2_4_2 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.4.2"; };
    faslExt = "fasl";
    flags = [ "--dynamic-space-size" "3000" ];
  };
  sbcl_2_4_2 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.4.2"; };
  sbcl_2_4_3 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.4.3"; };
    faslExt = "fasl";
    flags = [ "--dynamic-space-size" "3000" ];
  };
  sbcl = sbcl_2_4_2;
  sbcl = sbcl_2_4_3;
  sbclPackages = recurseIntoAttrs sbcl.pkgs;