2004-09-18 19:23:18 +02:00
|
|
|
{ stdenv, fetchurl, noSysDirs
|
2004-06-29 10:25:55 +02:00
|
|
|
, langC ? true, langCC ? true, langF77 ? false
|
2004-07-01 14:17:53 +02:00
|
|
|
, profiledCompiler ? false
|
2004-06-29 10:25:55 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert langC;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-06-23 13:09:07 +02:00
|
|
|
name = "gcc-3.4.6";
|
2004-06-29 10:25:55 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-10-12 16:53:45 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/gcc-3.4.6.tar.bz2;
|
2006-06-23 13:09:07 +02:00
|
|
|
md5 = "4a21ac777d4b5617283ce488b808da7b";
|
2004-06-29 10:25:55 +02:00
|
|
|
};
|
2006-10-26 13:25:29 +02:00
|
|
|
|
|
|
|
patches = if noSysDirs then [./no-sys-dirs.patch] else [];
|
|
|
|
|
2004-07-01 14:17:53 +02:00
|
|
|
inherit noSysDirs langC langCC langF77 profiledCompiler;
|
2006-10-12 12:53:16 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://gcc.gnu.org/";
|
|
|
|
license = "GPL/LGPL";
|
|
|
|
description = "GNU Compiler Collection, 3.4.x";
|
|
|
|
};
|
2004-06-29 10:25:55 +02:00
|
|
|
}
|