about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-06-17 10:30:13 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-06-17 10:30:13 +0000
commita450978f2699a7e2fe799ba8e89b364584ed76ff (patch)
tree5920e0e1531ddea1ee336efe44d74facf19cf3be /pkgs/development/tools
parentb691c30aa7c55f46fc3e690c308f1a31fd9d7dd2 (diff)
downloadnixlib-a450978f2699a7e2fe799ba8e89b364584ed76ff.tar
nixlib-a450978f2699a7e2fe799ba8e89b364584ed76ff.tar.gz
nixlib-a450978f2699a7e2fe799ba8e89b364584ed76ff.tar.bz2
nixlib-a450978f2699a7e2fe799ba8e89b364584ed76ff.tar.lz
nixlib-a450978f2699a7e2fe799ba8e89b364584ed76ff.tar.xz
nixlib-a450978f2699a7e2fe799ba8e89b364584ed76ff.tar.zst
nixlib-a450978f2699a7e2fe799ba8e89b364584ed76ff.zip
* Glibc updated to 2.3.5.
* GCC 3.4.4 and 3.3.6.
* Other stdenv packages updated.

svn path=/nixpkgs/trunk/; revision=3188
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/binutils/default.nix7
-rw-r--r--pkgs/development/tools/misc/binutils/no-lex.patch20
-rw-r--r--pkgs/development/tools/misc/gnum4/default.nix6
3 files changed, 6 insertions, 27 deletions
diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix
index 307de63c7fc9..010bf87f16b6 100644
--- a/pkgs/development/tools/misc/binutils/default.nix
+++ b/pkgs/development/tools/misc/binutils/default.nix
@@ -1,12 +1,11 @@
 {stdenv, fetchurl, noSysDirs}:
 
 stdenv.mkDerivation {
-  name = "binutils-2.15";
+  name = "binutils-2.16.1";
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/binutils-2.15.tar.bz2;
-    md5 = "624e6b74983ac6b2960edaf2d522ca58";
+    url = http://ftp.gnu.org/gnu/binutils/binutils-2.16.1.tar.bz2;
+    md5 = "6a9d529efb285071dad10e1f3d2b2967";
   };
-  patches = [./no-lex.patch];
   inherit noSysDirs;
 }
diff --git a/pkgs/development/tools/misc/binutils/no-lex.patch b/pkgs/development/tools/misc/binutils/no-lex.patch
deleted file mode 100644
index face7299a0c1..000000000000
--- a/pkgs/development/tools/misc/binutils/no-lex.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -rc binutils-orig/ld/configure binutils-2.15/ld/configure
-*** binutils-orig/ld/configure	2003-04-24 14:36:07.000000000 +0200
---- binutils-2.15/ld/configure	2004-09-18 15:18:52.000000000 +0200
-***************
-*** 4414,4420 ****
-  
-  test -n "$LEX" && break
-  done
-! test -n "$LEX" || LEX=""$missing_dir/missing flex""
-  
-  # Extract the first word of "flex", so it can be a program name with args.
-  set dummy flex; ac_word=$2
---- 4414,4420 ----
-  
-  test -n "$LEX" && break
-  done
-! test -n "$LEX" || LEX="$missing_dir/missing flex"
-  
-  # Extract the first word of "flex", so it can be a program name with args.
-  set dummy flex; ac_word=$2
diff --git a/pkgs/development/tools/misc/gnum4/default.nix b/pkgs/development/tools/misc/gnum4/default.nix
index 788c32cf6b8a..ad24bab99c76 100644
--- a/pkgs/development/tools/misc/gnum4/default.nix
+++ b/pkgs/development/tools/misc/gnum4/default.nix
@@ -1,9 +1,9 @@
 {stdenv, fetchurl}:
 stdenv.mkDerivation {
-  name = "gnum4-1.4";
+  name = "gnum4-1.4.3";
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/m4-1.4.tar.gz;
-    md5 = "9eb2dd07740b2d2f3c7adb3e8d299bda";
+    url = http://ftp.gnu.org/gnu/m4/m4-1.4.3.tar.bz2;
+    md5 = "1f7d7eba70a0525c44c2edc3998925c7";
   };
 }