aboutsummaryrefslogtreecommitdiff
path: root/nix/busybox.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/busybox.nix')
-rw-r--r--nix/busybox.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/nix/busybox.nix b/nix/busybox.nix
deleted file mode 100644
index 04d1a36..0000000
--- a/nix/busybox.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ stdenv, pkgsStatic }:
-
-stdenv.mkDerivation {
- name = "busybox-yerba";
- buildCommand = ''
- mkdir -p $out/_install/bin $out/_install/sbin
-
- cp ${pkgsStatic.busybox}/bin/busybox $out/_install/bin
- chmod +x $out/_install/bin/busybox
-
- cd $out/_install/bin
- for prog in $(./busybox --list); do
- ln -s busybox $prog
- done
-
-
- cd $out/_install/sbin
- for prog in $(./busybox --list); do
- ln -s ../bin/busybox $prog
- done
- '';
-}