diff options
Diffstat (limited to 'nix/busybox.nix')
| -rw-r--r-- | nix/busybox.nix | 4 |
1 files changed, 3 insertions, 1 deletions
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 ''; |
