aboutsummaryrefslogtreecommitdiff
path: root/nix/busybox.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-11 19:25:19 +1200
committerArslaan Pathan <[email protected]>2026-06-11 19:25:19 +1200
commit673f2563e48a4e1e37af6985d4d18f56bff741ea (patch)
tree7b3aadf32be6f18de9ddf617605352ea78486323 /nix/busybox.nix
parent3b00ff6e47d219276459fdb66e8497b0d3cd5249 (diff)
downloadyerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.tar.xz
yerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.zip
Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do.
Yocto time!
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
- '';
-}