e261da07cf
glibc-wrapper, ld-wrapper and all other wrappers so we can actually compile programs and whole projects with it. svn path=/nixpkgs/trunk/; revision=4312
12 lines
253 B
Nix
12 lines
253 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
builder = ./builder.sh;
|
|
name = "uClibc-0.9.28";
|
|
src = fetchurl {
|
|
url = http://www.uclibc.org/downloads/uClibc-0.9.28.tar.bz2;
|
|
md5 = "1ada58d919a82561061e4741fb6abd29";
|
|
};
|
|
config = ./config;
|
|
}
|