diff options
| author | 7c6f434c <7c6f434c@mail.ru> | 2024-10-02 18:29:29 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-02 18:29:29 +0000 |
| commit | bc63f402fdf4ad861b18746174d4e1fd37fcc4b0 (patch) | |
| tree | a4ce11a99812642906ea4b123ae765f452e0ba58 | |
| parent | luaformatter: fix x86_64 darwin (#345839) (diff) | |
| parent | sbcl: 2.4.8 -> 2.4.9 (diff) | |
| download | nixpkgs-bc63f402fdf4ad861b18746174d4e1fd37fcc4b0.tar.gz | |
sbcl: 2.4.8 -> 2.4.9 (#345415)
| -rw-r--r-- | pkgs/development/compilers/sbcl/default.nix | 9 | ||||
| -rw-r--r-- | pkgs/top-level/all-packages.nix | 10 |
2 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index e6724a19d3b2..b50928ce05f3 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -10,15 +10,18 @@ let versionMap = { + # Necessary for Nyxt "2.4.6" = { sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE="; }; - "2.4.7" = { - sha256 = "sha256-aFRNJQNjWs0BXVNMzJsq6faJltQptakGP9Iv8JJQEdI="; - }; + # 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.4.8" = { sha256 = "sha256-/G7NzFOOgKFKmY1TDMw4SkF5D09Pxs1//oyxJqZ3aUw="; }; + "2.4.9" = { + sha256 = "sha256-mXDk68XWlD3GTXyh9S2bXNn8lM75TSMyE9eOx182BeI="; + }; }; # Collection of pre-built SBCL binaries for platforms that need them for # bootstrapping. Ideally these are to be avoided. If ECL (or any other diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 598073fc6458..0921daff162b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24111,17 +24111,17 @@ with pkgs; faslExt = "fasl"; flags = [ "--dynamic-space-size" "3000" ]; }; - sbcl_2_4_7 = wrapLisp { - pkg = callPackage ../development/compilers/sbcl { version = "2.4.7"; }; + sbcl_2_4_8 = wrapLisp { + pkg = callPackage ../development/compilers/sbcl { version = "2.4.8"; }; faslExt = "fasl"; flags = [ "--dynamic-space-size" "3000" ]; }; - sbcl_2_4_8 = wrapLisp { - pkg = callPackage ../development/compilers/sbcl { version = "2.4.8"; }; + sbcl_2_4_9 = wrapLisp { + pkg = callPackage ../development/compilers/sbcl { version = "2.4.9"; }; faslExt = "fasl"; flags = [ "--dynamic-space-size" "3000" ]; }; - sbcl = sbcl_2_4_8; + sbcl = sbcl_2_4_9; sbclPackages = recurseIntoAttrs sbcl.pkgs; |
