summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc-static-3.4/default.nix
blob: 1f46a2f2922f12a5d17557bd3c340b3385b71fc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, fetchurl, noSysDirs}:

stdenv.mkDerivation {
  name = "gcc-static-3.4.6";
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/gcc/gcc-3.4.6/gcc-3.4.6.tar.bz2;
    md5 = "4a21ac777d4b5617283ce488b808da7b";
  };
  # !!! apply only if noSysDirs is set
  inherit noSysDirs;
  patches = if noSysDirs then [./no-sys-dirs.patch] else [./ldflags.patch];
}