nixpkgs/pkgs/development/compilers/gambit/default.nix
Francois-Rene Rideau d9f419bd57 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.
2018-08-11 14:07:15 -04:00

12 lines
298 B
Nix

{ stdenv, callPackage, fetchurl }:
callPackage ./build.nix {
version = "4.8.9";
SRC = fetchurl {
url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.8/source/gambit-v4_8_9-devel.tgz";
sha256 = "1gwzz1ag9hlv266nvfq1bhwzrps3f2yghhffasjjqy8i8xwnry5p";
};
inherit stdenv;
}