{ stdenv, fetchurl, noSysDirs , langC ? true, langCC ? true, langF77 ? false , profiledCompiler ? false }: assert langC; stdenv.mkDerivation { name = "gcc-3.4.3"; builder = ./builder.sh; src = fetchurl { url = http://catamaran.labs.cs.uu.nl/dist/tarballs/gcc-3.4.3.tar.bz2; md5 = "e744b30c834360fccac41eb7269a3011"; }; # !!! apply only if noSysDirs is set patches = [./no-sys-dirs.patch]; inherit noSysDirs langC langCC langF77 profiledCompiler; }