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

sbcl: 2.5.4 -> 2.5.5 (#415084)

parents 01d500d3 95825b45
Loading
Loading
Loading
Loading
+4 −12
Original line number Diff line number Diff line
@@ -24,21 +24,13 @@
let
  versionMap = {
    # Necessary for Nyxt
    "2.4.6" = {
      sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE=";
    };
    "2.4.6".sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE=";
    # Necessary for stumpwm
    "2.4.10" = {
      sha256 = "sha256-zus5a2nSkT7uBIQcKva+ylw0LOFGTD/j5FPy3hDF4vg=";
    };
    "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.2" = {
      sha256 = "sha256-XcJ+un3aQz31P9dEHeixFHSoLNrBaJwfbOVfoGXWX6w=";
    };
    "2.5.4" = {
      sha256 = "sha256-XxS07ZKUKp44dZT6wAC5bbdGfpzlYTBn/8CSPfPsIHI=";
    };
    "2.5.4".sha256 = "sha256-XxS07ZKUKp44dZT6wAC5bbdGfpzlYTBn/8CSPfPsIHI=";
    "2.5.5".sha256 = "sha256-ZQJnCvs2G6m+RKL6/pr5tZ57JK5QmnkaZrVIHylVlQs=";
  };
  # 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
@@ -10026,23 +10026,23 @@ with pkgs;
      "3000"
    ];
  };
  sbcl_2_5_2 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.2"; };
  sbcl_2_5_4 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.4"; };
    faslExt = "fasl";
    flags = [
      "--dynamic-space-size"
      "3000"
    ];
  };
  sbcl_2_5_4 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.4"; };
  sbcl_2_5_5 = wrapLisp {
    pkg = callPackage ../development/compilers/sbcl { version = "2.5.5"; };
    faslExt = "fasl";
    flags = [
      "--dynamic-space-size"
      "3000"
    ];
  };
  sbcl = sbcl_2_5_4;
  sbcl = sbcl_2_5_5;
  sbclPackages = recurseIntoAttrs sbcl.pkgs;