summary refs log tree commit diff
path: root/pkgs/misc/busybox/busybox-1.3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/busybox/busybox-1.3.nix')
-rw-r--r--pkgs/misc/busybox/busybox-1.3.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/misc/busybox/busybox-1.3.nix b/pkgs/misc/busybox/busybox-1.3.nix
deleted file mode 100644
index fe2ffb28b73..00000000000
--- a/pkgs/misc/busybox/busybox-1.3.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{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;
-}