* Glibc updated to 2.3.4.

svn path=/nixpkgs/trunk/; revision=2260
This commit is contained in:
Eelco Dolstra
2005-02-21 16:54:04 +00:00
parent c5ee6019d8
commit 350268458c
2 changed files with 17 additions and 3 deletions
+8 -3
View File
@@ -1,13 +1,18 @@
{stdenv, fetchurl, kernelHeaders, installLocales ? true}:
stdenv.mkDerivation {
name = "glibc-2.3.3";
name = "glibc-2.3.4";
builder = ./builder.sh;
substitute = ../../../build-support/substitute/substitute.sh;
src = fetchurl {
url = ftp://sources.redhat.com/pub/glibc/snapshots/glibc-20050110.tar.bz2;
md5 = "1171587e4802f43fdda315910adc1854";
url = http://ftp.gnu.org/gnu/glibc/glibc-2.3.4.tar.bz2;
md5 = "174ac5ed4f2851fcc866a3bac1e4a6a5";
};
linuxthreadsSrc = fetchurl {
url = http://ftp.gnu.org/gnu/glibc/glibc-linuxthreads-2.3.4.tar.bz2;
md5 = "7a199cd4965eb5622163756ae64358fe";
};
patches = [ ./glibc-pwd.patch ];