From 673f2563e48a4e1e37af6985d4d18f56bff741ea Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Thu, 11 Jun 2026 19:25:19 +1200 Subject: Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do. Yocto time! --- nix/busybox.nix | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 nix/busybox.nix (limited to 'nix/busybox.nix') 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 - ''; -} -- cgit v1.2.3