nixpkgs/pkgs/misc/busybox/busybox-1.2.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

17 lines
408 B
Nix

{stdenv, fetchurl, gccCross ? null, binutilsCross ? null}:
stdenv.mkDerivation {
name = "busybox-1.2.1";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/busybox-1.2.1.tar.bz2;
md5 = "362b3dc0f2023ddfda901dc1f1a74391";
};
# inherit gccCross;
# buildinputs = [binutilsCross];
# fixme, need a decent config for MIPS or so
config = ./x86-config-1.2;
}