sbcl: 2.5.5 -> 2.5.7 (#436532)

authored by 7c6f434c and committed by GitHub 726441c2 4d2d3165

+6 -6
+1 -1
pkgs/development/compilers/sbcl/default.nix
··· 29 29 "2.4.10".sha256 = "sha256-zus5a2nSkT7uBIQcKva+ylw0LOFGTD/j5FPy3hDF4vg="; 30 30 # By unofficial and very loose convention we keep the latest version of 31 31 # SBCL, and the previous one in case someone quickly needs to roll back. 32 - "2.5.4".sha256 = "sha256-XxS07ZKUKp44dZT6wAC5bbdGfpzlYTBn/8CSPfPsIHI="; 33 32 "2.5.5".sha256 = "sha256-ZQJnCvs2G6m+RKL6/pr5tZ57JK5QmnkaZrVIHylVlQs="; 33 + "2.5.7".sha256 = "sha256-xPr+t5VpnVvP+QhQkazHYtz15V+FI1Yl89eu8SyJ0dM="; 34 34 }; 35 35 # Collection of pre-built SBCL binaries for platforms that need them for 36 36 # bootstrapping. Ideally these are to be avoided. If ECL (or any other
+5 -5
pkgs/top-level/all-packages.nix
··· 9510 9510 "3000" 9511 9511 ]; 9512 9512 }; 9513 - sbcl_2_5_4 = wrapLisp { 9514 - pkg = callPackage ../development/compilers/sbcl { version = "2.5.4"; }; 9513 + sbcl_2_5_5 = wrapLisp { 9514 + pkg = callPackage ../development/compilers/sbcl { version = "2.5.5"; }; 9515 9515 faslExt = "fasl"; 9516 9516 flags = [ 9517 9517 "--dynamic-space-size" 9518 9518 "3000" 9519 9519 ]; 9520 9520 }; 9521 - sbcl_2_5_5 = wrapLisp { 9522 - pkg = callPackage ../development/compilers/sbcl { version = "2.5.5"; }; 9521 + sbcl_2_5_7 = wrapLisp { 9522 + pkg = callPackage ../development/compilers/sbcl { version = "2.5.7"; }; 9523 9523 faslExt = "fasl"; 9524 9524 flags = [ 9525 9525 "--dynamic-space-size" 9526 9526 "3000" 9527 9527 ]; 9528 9528 }; 9529 - sbcl = sbcl_2_5_5; 9529 + sbcl = sbcl_2_5_7; 9530 9530 9531 9531 sbclPackages = recurseIntoAttrs sbcl.pkgs; 9532 9532