nixpkgs/pkgs/development/compilers/gcc-static-3.4/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

14 lines
381 B
Nix

{ 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];
}