forked from mirrors/nixpkgs
94fe7734fa
* 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
22 lines
569 B
Nix
22 lines
569 B
Nix
{stdenv, fetchurl, kernelHeaders, installLocales ? true}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "glibc-2.3.6";
|
|
builder = ./builder.sh;
|
|
substitute = ../../../build-support/substitute/substitute.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://ftp.gnu.org/pub/gnu/glibc/glibc-2.3.6.tar.bz2;
|
|
md5 = "bfdce99f82d6dbcb64b7f11c05d6bc96";
|
|
};
|
|
|
|
linuxthreadsSrc = fetchurl {
|
|
url = http://ftp.gnu.org/pub/gnu/glibc/glibc-linuxthreads-2.3.6.tar.bz2;
|
|
md5 = "d4eeda37472666a15cc1f407e9c987a9";
|
|
};
|
|
|
|
patches = [ ./glibc-pwd.patch ];
|
|
|
|
inherit kernelHeaders installLocales;
|
|
}
|