From 1a2f1130cb216a51cd5e3133f9f807047da51cd4 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Fri, 25 Aug 2006 21:20:04 +0000 Subject: [PATCH] 3.4.2 -> 3.4.6 We should update the whole Nix "static baseline" soon...ish svn path=/nixpkgs/trunk/; revision=6244 --- pkgs/development/compilers/gcc-static-3.4/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/gcc-static-3.4/default.nix b/pkgs/development/compilers/gcc-static-3.4/default.nix index fd40db594a6..f5783555d66 100644 --- a/pkgs/development/compilers/gcc-static-3.4/default.nix +++ b/pkgs/development/compilers/gcc-static-3.4/default.nix @@ -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];