gambit, gerbil: use stdenv = gccStdenv

clang builds gambit 10x slower to produce code that is 3x slower than
when using GCC. So use GCC to build Gambit and Gerbil.
This commit is contained in:
Francois-Rene Rideau
2018-08-10 15:41:15 -04:00
parent c75576f9e8
commit d9f419bd57
5 changed files with 12 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
{ callPackage, fetchurl, gambit }:
{ stdenv, callPackage, fetchurl, gambit }:
callPackage ./build.nix {
version = "0.12-RELEASE";
@@ -8,4 +8,5 @@ callPackage ./build.nix {
url = "https://github.com/vyzo/gerbil/archive/v0.12.tar.gz";
sha256 = "0nigr3mgrzai57q2jqac8f39zj8rcmic3277ynyzlgm8hhps71pq";
};
inherit stdenv;
}