36e57ebead
embedded systems and installation CDs. Hopefully this will decrease the size of things we use on the NixOS installation CD. Only tested in a cross-compile for MIPS so far. svn path=/nixpkgs/trunk/; revision=4968
17 lines
335 B
Nix
17 lines
335 B
Nix
{stdenv, fetchurl, gccCross, binutilsCross}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "busybox-1.1.0";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://www.busybox.net/downloads/busybox-1.1.0.tar.bz2;
|
|
md5 = "855e12c7c9dc90e16b014a788925e4cb";
|
|
};
|
|
|
|
inherit gccCross;
|
|
buildinputs = [binutilsCross];
|
|
config = ./config;
|
|
|
|
}
|