summary refs log tree commit diff
path: root/pkgs/misc/busybox/busybox-1.3.nix
blob: fe2ffb28b73179ccc458fbee440c2132b7d78911 (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.3.1";
  builder = ./builder.sh;

  src = fetchurl {
    url = http://busybox.net/downloads/busybox-1.3.1.tar.bz2;
    md5 = "571531cfa83726947ccb566de017ad4f";
  };

  # inherit gccCross;
  # buildinputs = [binutilsCross];
  # fixme, need a decent config for MIPS or so
  config = ./x86-config-1.2;
}