Skip to content
Snippets Groups Projects
Unverified Commit 694b6d22 authored by Shea Levy's avatar Shea Levy
Browse files

Merge branch 'fix/busybox-sandbox-shell-attribute' of git://github.com/dtzWill/nix

parents 43f8ef73 47dc6076
No related branches found
No related tags found
No related merge requests found
{ pkgs }:
rec {
sh = pkgs.busybox.override {
# Use "busybox-sandbox-shell" if present,
# if not (legacy) fallback and hope it's sufficient.
sh = pkgs.busybox-sandbox-shell or (pkgs.busybox.override {
useMusl = true;
enableStatic = true;
enableMinimal = true;
......@@ -11,7 +13,7 @@ rec {
CONFIG_ASH_TEST y
CONFIG_ASH_OPTIMIZE_FOR_SIZE y
'';
};
});
configureFlags =
[ "--disable-init-state"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment