2004-09-18 10:23:18 -07:00
|
|
|
{ stdenv, fetchurl, noSysDirs
|
2004-06-29 01:25:55 -07:00
|
|
|
, langC ? true, langCC ? true, langF77 ? false
|
2004-07-01 05:17:53 -07:00
|
|
|
, profiledCompiler ? false
|
2004-06-29 01:25:55 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert langC;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-12-05 16:12:45 -08:00
|
|
|
name = "gcc-3.4.5";
|
2004-06-29 01:25:55 -07:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-01-30 08:04:03 -08:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/gcc-3.4.5.tar.bz2;
|
2005-12-05 16:12:45 -08:00
|
|
|
md5 = "7c3c3c3e764dcee5eb771432062d69e1";
|
2004-06-29 01:25:55 -07:00
|
|
|
};
|
|
|
|
# !!! apply only if noSysDirs is set
|
|
|
|
patches = [./no-sys-dirs.patch];
|
2004-07-01 05:17:53 -07:00
|
|
|
inherit noSysDirs langC langCC langF77 profiledCompiler;
|
2004-06-29 01:25:55 -07:00
|
|
|
}
|