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

sbcl: 2.5.7 -> 2.5.9

parent 3cbe716e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,8 +29,8 @@ let
    "2.4.10".sha256 = "sha256-zus5a2nSkT7uBIQcKva+ylw0LOFGTD/j5FPy3hDF4vg=";
    # By unofficial and very loose convention we keep the latest version of
    # SBCL, and the previous one in case someone quickly needs to roll back.
    "2.5.5".sha256 = "sha256-ZQJnCvs2G6m+RKL6/pr5tZ57JK5QmnkaZrVIHylVlQs=";
    "2.5.7".sha256 = "sha256-xPr+t5VpnVvP+QhQkazHYtz15V+FI1Yl89eu8SyJ0dM=";
    "2.5.9".sha256 = "sha256-0bGQItQ9xJPtyXK25ZyTrmaEyWP90rQTsJZeGM1r0eI=";
  };
  # 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
@@ -9071,23 +9071,23 @@ with pkgs;
      "3000"
    ];
  };
  sbcl_2_5_5 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.5"; };
  sbcl_2_5_7 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.7"; };
    faslExt = "fasl";
    flags = [
      "--dynamic-space-size"
      "3000"
    ];
  };
  sbcl_2_5_7 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.7"; };
  sbcl_2_5_9 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.9"; };
    faslExt = "fasl";
    flags = [
      "--dynamic-space-size"
      "3000"
    ];
  };
  sbcl = sbcl_2_5_7;
  sbcl = sbcl_2_5_9;

  sbclPackages = recurseIntoAttrs sbcl.pkgs;