about summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/default.nix
blob: cedd38dac843bc7e1bde16162ffaf9087e51c9b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl, noSysDirs
, langC ? true, langCC ? true, langF77 ? false
}:

assert langC;

derivation {
  name = "gcc-3.3.3";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/mirror/languages/gcc/releases/gcc-3.3.3/gcc-3.3.3.tar.bz2;
    md5 = "3c6cfd9fcd180481063b4058cf6faff2";
  };
  inherit stdenv noSysDirs langC langCC langF77;
}