3.4.2 -> 3.4.6

We should update the whole Nix "static baseline" soon...ish

svn path=/nixpkgs/trunk/; revision=6244
This commit is contained in:
Armijn Hemel 2006-08-25 21:20:04 +00:00
parent 193edaab22
commit 1a2f1130cb

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "gcc-static-3.4.2";
name = "gcc-static-3.4.6";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/gcc-3.4.2.tar.bz2;
md5 = "2fada3a3effd2fd791df09df1f1534b3";
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
patches = [./no-sys-dirs.patch];