2004-10-28 12:53:11 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-08-25 21:20:04 +00:00
|
|
|
name = "gcc-static-3.4.6";
|
2004-10-28 12:53:11 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-08-25 21:20:04 +00:00
|
|
|
url = ftp://ftp.nluug.nl/pub/gnu/gcc/gcc-3.4.6/gcc-3.4.6.tar.bz2;
|
|
|
|
md5 = "4a21ac777d4b5617283ce488b808da7b";
|
2004-10-28 12:53:11 +00:00
|
|
|
};
|
|
|
|
# !!! apply only if noSysDirs is set
|
|
|
|
patches = [./no-sys-dirs.patch];
|
|
|
|
noSysDirs = 1;
|
|
|
|
}
|