33 lines
700 B
Nix
33 lines
700 B
Nix
|
{ stdenv, fetchsvn, kernelHeaders
|
||
|
, installLocales ? true
|
||
|
, profilingLibraries ? false
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "eglibc-2.10";
|
||
|
|
||
|
src = fetchsvn {
|
||
|
url = svn://svn.eglibc.org/branches/eglibc-2_10;
|
||
|
rev = 8690;
|
||
|
sha256 = "029hklrx2rlhsb5r2csd0gapjm0rbr8n28ib6jnnhms12x302viq";
|
||
|
};
|
||
|
|
||
|
inherit kernelHeaders installLocales;
|
||
|
|
||
|
configureFlags = [
|
||
|
"--with-headers=${kernelHeaders}/include"
|
||
|
"--without-fp"
|
||
|
"--enable-add-ons=libidn,ports,nptl"
|
||
|
"--disable-profile"
|
||
|
"--host=arm-linux-gnueabi"
|
||
|
"--build=arm-linux-gnueabi"
|
||
|
];
|
||
|
|
||
|
builder = ./builder.sh;
|
||
|
|
||
|
meta = {
|
||
|
homepage = http://www.gnu.org/software/libc/;
|
||
|
description = "The GNU C Library";
|
||
|
};
|
||
|
}
|