aboutsummaryrefslogtreecommitdiff
path: root/nix/busybox.nix
diff options
context:
space:
mode:
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
- };
+ '';
}