aboutsummaryrefslogtreecommitdiff
path: root/nix/busybox.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-07 16:10:35 +1200
committerArslaan Pathan <[email protected]>2026-06-07 16:10:35 +1200
commit9bb3782a2f0ff04411f19b5e3d0831bc555e681d (patch)
tree47ed1089e41c4dfefc097802070d12dea19ace0b /nix/busybox.nix
parentbb6fa8f3c8228cbe4bc2d2b9361d4eaa0978c553 (diff)
downloadyerbalinux-9bb3782a2f0ff04411f19b5e3d0831bc555e681d.tar.xz
yerbalinux-9bb3782a2f0ff04411f19b5e3d0831bc555e681d.zip
Minor fixes/mods
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 711a9d5..f78ebeb 100644
--- a/nix/busybox.nix
+++ b/nix/busybox.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation {
name = "busybox-yerba";
src = fetchgit {
url = "https://git.eaguru.guru/mirrors/busybox.git"; # change this to the official git.busybox.net/busybox when their SSL comes back
- rev = "1_36_stable";
+ rev = "1_36_1";
hash = "sha256-lK8jlq1g2X9AhscZDiPf43koNbdMFYiLSAb9Y/OETnU=";
};
preConfigure = ''
@@ -14,6 +14,6 @@ stdenv.mkDerivation {
make -j$NIX_BUILD_CORES all
'';
installPhase = ''
- make install CONFIG_PREFIX=$out
+ make install CONFIG_PREFIX=$out/_install
'';
}