aboutsummaryrefslogtreecommitdiff
path: root/nix/busybox.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-07 13:08:29 +1200
committerArslaan Pathan <[email protected]>2026-06-07 13:08:29 +1200
commit5167318ed1b9055d7642df95984dfcae4810e9aa (patch)
tree84f3fac167b02c355fbd9bd20965190e480d245c /nix/busybox.nix
parent29e65a8c438cd65b944773ab3b6ba1601a5b220a (diff)
downloadyerbalinux-5167318ed1b9055d7642df95984dfcae4810e9aa.tar.xz
yerbalinux-5167318ed1b9055d7642df95984dfcae4810e9aa.zip
Fill in more nix files and fix issue in BusyBox nix
Diffstat (limited to 'nix/busybox.nix')
-rw-r--r--nix/busybox.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/busybox.nix b/nix/busybox.nix
index 9993e2d..b7fa944 100644
--- a/nix/busybox.nix
+++ b/nix/busybox.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
preConfigure = ''
cp ${./busybox_config} .config
'';
- installPhase = {
+ installPhase = ''
make install CONFIG_PREFIX=$out
- };
+ '';
}