racket: fix build by using gcc7

See #31017.
This commit is contained in:
Gabriel Ebner 2017-11-12 09:30:20 +01:00
parent 65424eac66
commit b7490c9702

View File

@ -6692,7 +6692,12 @@ with pkgs;
pyrex096 = callPackage ../development/interpreters/pyrex/0.9.6.nix { }; pyrex096 = callPackage ../development/interpreters/pyrex/0.9.6.nix { };
racket = callPackage ../development/interpreters/racket { }; racket = callPackage ../development/interpreters/racket {
# racket 6.11 doesn't build with gcc6 + recent glibc:
# https://github.com/racket/racket/pull/1886
# https://github.com/NixOS/nixpkgs/pull/31017#issuecomment-343574769
stdenv = overrideCC stdenv gcc7;
};
rakudo = callPackage ../development/interpreters/rakudo { rakudo = callPackage ../development/interpreters/rakudo {
inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices; inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices;