mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
sbcl: 2.5.9 -> 2.5.10
This commit is contained in:
parent
bf0d024cad
commit
f789192d2b
|
|
@ -29,8 +29,8 @@ let
|
||||||
"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
|
# 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.
|
# SBCL, and the previous one in case someone quickly needs to roll back.
|
||||||
"2.5.7".sha256 = "sha256-xPr+t5VpnVvP+QhQkazHYtz15V+FI1Yl89eu8SyJ0dM=";
|
|
||||||
"2.5.9".sha256 = "sha256-0bGQItQ9xJPtyXK25ZyTrmaEyWP90rQTsJZeGM1r0eI=";
|
"2.5.9".sha256 = "sha256-0bGQItQ9xJPtyXK25ZyTrmaEyWP90rQTsJZeGM1r0eI=";
|
||||||
|
"2.5.10".sha256 = "sha256-v1+0nypC82s+AD0uTSNDhq3fB9ndjKhjRlaSfMls4SU=";
|
||||||
};
|
};
|
||||||
# Collection of pre-built SBCL binaries for platforms that need them for
|
# Collection of pre-built SBCL binaries for platforms that need them for
|
||||||
# bootstrapping. Ideally these are to be avoided. If ECL (or any other
|
# bootstrapping. Ideally these are to be avoided. If ECL (or any other
|
||||||
|
|
|
||||||
|
|
@ -9071,14 +9071,6 @@ with pkgs;
|
||||||
"3000"
|
"3000"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
sbcl_2_5_7 = wrapLisp {
|
|
||||||
pkg = callPackage ../development/compilers/sbcl { version = "2.5.7"; };
|
|
||||||
faslExt = "fasl";
|
|
||||||
flags = [
|
|
||||||
"--dynamic-space-size"
|
|
||||||
"3000"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
sbcl_2_5_9 = wrapLisp {
|
sbcl_2_5_9 = wrapLisp {
|
||||||
pkg = callPackage ../development/compilers/sbcl { version = "2.5.9"; };
|
pkg = callPackage ../development/compilers/sbcl { version = "2.5.9"; };
|
||||||
faslExt = "fasl";
|
faslExt = "fasl";
|
||||||
|
|
@ -9087,7 +9079,15 @@ with pkgs;
|
||||||
"3000"
|
"3000"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
sbcl = sbcl_2_5_9;
|
sbcl_2_5_10 = wrapLisp {
|
||||||
|
pkg = callPackage ../development/compilers/sbcl { version = "2.5.10"; };
|
||||||
|
faslExt = "fasl";
|
||||||
|
flags = [
|
||||||
|
"--dynamic-space-size"
|
||||||
|
"3000"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
sbcl = sbcl_2_5_10;
|
||||||
|
|
||||||
sbclPackages = recurseIntoAttrs sbcl.pkgs;
|
sbclPackages = recurseIntoAttrs sbcl.pkgs;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue