From 29e65a8c438cd65b944773ab3b6ba1601a5b220a Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Sun, 7 Jun 2026 12:57:48 +1200 Subject: Busybox + file templates --- nix/busybox.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 nix/busybox.nix (limited to 'nix/busybox.nix') diff --git a/nix/busybox.nix b/nix/busybox.nix new file mode 100644 index 0000000..9993e2d --- /dev/null +++ b/nix/busybox.nix @@ -0,0 +1,16 @@ +{ stdenv, fetchgit } + +stdenv.mkDerivation { + name = "busybox-yerba"; + src = fetchgit { + url = "https://git.busybox.net/busybox"; + rev = "1_36_1"; + hash = ""; + }; + preConfigure = '' + cp ${./busybox_config} .config + ''; + installPhase = { + make install CONFIG_PREFIX=$out + }; +} -- cgit v1.2.3