summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc-static-3.4/default.nix
blob: 4b2ea23e78fda3f15b790d1754eb032039654463 (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 = http://nix.cs.uu.nl/dist/tarballs/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];
}