From 654a856e3c13bfa7a2bde1ca1d6153854139fad9 Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Mon, 8 Jun 2026 13:24:17 +1200 Subject: Make busybox static and start trying to make it not fail with the 'm' and 'resolv' libraries --- nix/busybox.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'nix/busybox.nix') diff --git a/nix/busybox.nix b/nix/busybox.nix index f78ebeb..dab76a8 100644 --- a/nix/busybox.nix +++ b/nix/busybox.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, linuxHeaders }: +{ stdenv, fetchgit, linuxHeaders, mlib }: stdenv.mkDerivation { name = "busybox-yerba"; @@ -7,6 +7,8 @@ stdenv.mkDerivation { rev = "1_36_1"; hash = "sha256-lK8jlq1g2X9AhscZDiPf43koNbdMFYiLSAb9Y/OETnU="; }; + buildInputs = [ linuxHeaders mlib ]; + nativeBuildInputs = [ linuxHeaders mlib ]; preConfigure = '' cp ${./busybox_config} .config ''; -- cgit v1.2.3