Skip to content

Commit

Permalink
racket: fix build by using gcc7
Browse files Browse the repository at this point in the history
See #31017.
  • Loading branch information
gebner committed Nov 12, 2017
1 parent 65424ea commit b7490c9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -6692,7 +6692,12 @@ with pkgs;

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 {
inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices;
Expand Down

0 comments on commit b7490c9

Please sign in to comment.