summary refs log tree commit diff
path: root/pkgs/misc/busybox/busybox-1.2.nix
blob: bf7bef886b37255027f7c17ecc314884caf50f33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{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;
}