commit
4aa1bf6d1e
3 changed files with 8 additions and 3 deletions
4
pkgs/development/compilers/sbcl/2.2.9.nix
Normal file
4
pkgs/development/compilers/sbcl/2.2.9.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
import ./common.nix {
|
||||||
|
version = "2.2.9";
|
||||||
|
sha256 = "sha256-fr69bSAj//cHewNy+hFx+IBSm97GEE8gmDKXwv63wXI=";
|
||||||
|
}
|
|
@ -32,8 +32,8 @@ stdenv.mkDerivation rec {
|
||||||
url = "https://github.com/sbcl/sbcl/commit/8fa3f76fba2e8572e86ac6fc5754e6b2954fc774.patch";
|
url = "https://github.com/sbcl/sbcl/commit/8fa3f76fba2e8572e86ac6fc5754e6b2954fc774.patch";
|
||||||
sha256 = "1ic531pjnws1k3xd03a5ixbq8cn10dlh2nfln59k0vbm0253g3lv";
|
sha256 = "1ic531pjnws1k3xd03a5ixbq8cn10dlh2nfln59k0vbm0253g3lv";
|
||||||
})
|
})
|
||||||
++ lib.optionals (lib.versionAtLeast version "2.1.10") [
|
++ lib.optionals (lib.versionAtLeast version "2.1.10" && lib.versionOlder version "2.2.9") [
|
||||||
# Fix pending upstream inclusion on -fno-common toolchains:
|
# Fix included in SBCL trunk since 2.2.9:
|
||||||
# https://bugs.launchpad.net/sbcl/+bug/1980570
|
# https://bugs.launchpad.net/sbcl/+bug/1980570
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
name = "darwin-fno-common.patch";
|
name = "darwin-fno-common.patch";
|
||||||
|
|
|
@ -14883,7 +14883,8 @@ with pkgs;
|
||||||
sbcl_2_1_11 = callPackage ../development/compilers/sbcl/2.1.11.nix {};
|
sbcl_2_1_11 = callPackage ../development/compilers/sbcl/2.1.11.nix {};
|
||||||
sbcl_2_2_4 = callPackage ../development/compilers/sbcl/2.2.4.nix {};
|
sbcl_2_2_4 = callPackage ../development/compilers/sbcl/2.2.4.nix {};
|
||||||
sbcl_2_2_6 = callPackage ../development/compilers/sbcl/2.2.6.nix {};
|
sbcl_2_2_6 = callPackage ../development/compilers/sbcl/2.2.6.nix {};
|
||||||
sbcl = sbcl_2_2_6;
|
sbcl_2_2_9 = callPackage ../development/compilers/sbcl/2.2.9.nix {};
|
||||||
|
sbcl = sbcl_2_2_9;
|
||||||
|
|
||||||
roswell = callPackage ../development/tools/roswell { };
|
roswell = callPackage ../development/tools/roswell { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue