* Glibc 2.3.6.

* GCC 3.4.5.
* Updated several other stdenv packages.
* Modified the builders of several packages to use the generic
  builder.

svn path=/nixpkgs/trunk/; revision=4336
This commit is contained in:
Eelco Dolstra
2005-12-06 00:12:45 +00:00
parent 82e678362f
commit 94fe7734fa
23 changed files with 37 additions and 85 deletions
+5 -5
View File
@@ -1,18 +1,18 @@
{stdenv, fetchurl, kernelHeaders, installLocales ? true}:
stdenv.mkDerivation {
name = "glibc-2.3.5";
name = "glibc-2.3.6";
builder = ./builder.sh;
substitute = ../../../build-support/substitute/substitute.sh;
src = fetchurl {
url = http://ftp.gnu.org/gnu/glibc/glibc-2.3.5.tar.bz2;
md5 = "93d9c51850e0513aa4846ac0ddcef639";
url = http://ftp.gnu.org/pub/gnu/glibc/glibc-2.3.6.tar.bz2;
md5 = "bfdce99f82d6dbcb64b7f11c05d6bc96";
};
linuxthreadsSrc = fetchurl {
url = http://ftp.gnu.org/gnu/glibc/glibc-linuxthreads-2.3.5.tar.bz2;
md5 = "77011b0898393c56b799bc011a0f37bf";
url = http://ftp.gnu.org/pub/gnu/glibc/glibc-linuxthreads-2.3.6.tar.bz2;
md5 = "d4eeda37472666a15cc1f407e9c987a9";
};
patches = [ ./glibc-pwd.patch ];