2021-06-09 12:14:34 +01:00
|
|
|
{ stdenv, lib, buildPackages, fetchurl, fetchFromGitLab
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2015-05-06 08:14:18 +01:00
|
|
|
, enableMinimal ? false
|
2022-02-20 05:11:19 +00:00
|
|
|
, enableAppletSymlinks ? true
|
2019-10-12 07:31:19 +01:00
|
|
|
# Allow forcing musl without switching stdenv itself, e.g. for our bootstrapping:
|
|
|
|
# nix build -f pkgs/top-level/release.nix stdenvBootstrapTools.x86_64-linux.dist
|
2019-09-29 15:31:50 +01:00
|
|
|
, useMusl ? stdenv.hostPlatform.libc == "musl", musl
|
2015-05-06 08:14:18 +01:00
|
|
|
, extraConfig ? ""
|
|
|
|
}:
|
2010-03-09 22:17:38 +00:00
|
|
|
|
2018-01-23 21:42:02 +00:00
|
|
|
assert stdenv.hostPlatform.libc == "musl" -> useMusl;
|
|
|
|
|
2010-03-09 22:17:38 +00:00
|
|
|
let
|
2010-08-01 22:06:45 +01:00
|
|
|
configParser = ''
|
|
|
|
function parseconfig {
|
|
|
|
while read LINE; do
|
2010-08-01 22:25:37 +01:00
|
|
|
NAME=`echo "$LINE" | cut -d \ -f 1`
|
|
|
|
OPTION=`echo "$LINE" | cut -d \ -f 2`
|
2010-08-01 22:06:45 +01:00
|
|
|
|
2014-10-29 12:32:40 +00:00
|
|
|
if ! [[ "$NAME" =~ ^CONFIG_ ]]; then continue; fi
|
2010-08-01 22:06:45 +01:00
|
|
|
|
2010-08-01 22:25:37 +01:00
|
|
|
echo "parseconfig: removing $NAME"
|
2012-03-11 21:23:15 +00:00
|
|
|
sed -i /$NAME'\(=\| \)'/d .config
|
2010-08-01 22:06:45 +01:00
|
|
|
|
2010-11-21 20:39:52 +00:00
|
|
|
echo "parseconfig: setting $NAME=$OPTION"
|
|
|
|
echo "$NAME=$OPTION" >> .config
|
2010-08-01 22:06:45 +01:00
|
|
|
done
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2018-01-23 21:42:02 +00:00
|
|
|
libcConfig = lib.optionalString useMusl ''
|
|
|
|
CONFIG_FEATURE_UTMP n
|
|
|
|
CONFIG_FEATURE_WTMP n
|
|
|
|
'';
|
2020-07-28 23:24:19 +01:00
|
|
|
|
2021-06-09 12:14:34 +01:00
|
|
|
# The debian version lags behind the upstream version and also contains
|
2020-09-13 10:30:39 +01:00
|
|
|
# a debian-specific suffix. We only fetch the debian repository to get the
|
|
|
|
# default.script
|
|
|
|
debianVersion = "1.30.1-6";
|
|
|
|
debianSource = fetchFromGitLab {
|
|
|
|
domain = "salsa.debian.org";
|
|
|
|
owner = "installer-team";
|
|
|
|
repo = "busybox";
|
|
|
|
rev = "debian/1%${debianVersion}";
|
|
|
|
sha256 = "sha256-6r0RXtmqGXtJbvLSD1Ma1xpqR8oXL2bBKaUE/cSENL8=";
|
2020-07-28 23:24:19 +01:00
|
|
|
};
|
2020-09-13 10:30:39 +01:00
|
|
|
debianDispatcherScript = "${debianSource}/debian/tree/udhcpc/etc/udhcpc/default.script";
|
2020-07-28 23:24:19 +01:00
|
|
|
outDispatchPath = "$out/default.script";
|
2010-03-09 22:17:38 +00:00
|
|
|
in
|
|
|
|
|
2010-08-22 00:13:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-01-07 18:56:22 +00:00
|
|
|
pname = "busybox";
|
busybox: 1.35.0 -> 1.36.0
Changes:
```
Aaro Koskinen:
devmem: add 128-bit width
Bernhard Reutner-Fischer (3):
kbuild: fix building sha256
kbuild: Prefer -Oz over -Os
seedrng: manually inline seed_rng
Brandon Maier:
xxd: fix typo in trivial usage
Dario Binacchi (2):
fbset: abort on not handled options
fbset: support setting pixel clock rate
David Leonard:
tsort: new applet
Denys Vlasenko:
Makefile.flags: add resolv to LDLIBS for linux compilers too (not only gnu ones)
build system: detect if build host has no bzip2
scripts/echo.c: fix NUL handling in "abc\0 def"
libbb/loop: fix compile failure (name collision)
libbb/loop: optionally use ioctl(LOOP_CONFIGURE) to set up loopdevs
libbb/loop: restore the correct return value of set_loop()
libbb/sha1: add config-selectable fully unrolled version, closes 14391
libbb/sha1: add config-selectable partially unrolled version
libbb/sha1: assembly versions for x86
libbb/sha1: optional x86 hardware accelerated hashing
libbb/sha256: optional x86 hardware accelerated hashing
libbb: change xstrndup, xmemdup to take size_t as size parameter
libbb: factor out fflush_stdout_and_exit(EXIT_SUCCESS)
libbb: fflush_stdout_and_exit(0) still exits with _error_ (not 0!) if fflush fails
libbb: fix fallout from nth_string() robustification, closes 14726
libbb: introduce and use chdir_or_warn()
libbb: invert the meaning of SETUP_ENV_NO_CHDIR -> SETUP_ENV_CHDIR
tls: P256: remove NOP macro sp_256_norm_8()
tls: include signature_algorithms extension in client hello message
examples/var_service/dhcp_if: make helper scripts more talkative
testsuite/mount.tests: accomodate umount failure seen on 5.18.0
testsuite/sha1sum.tests: fix false positive failure
shell: add comments about SIGINT-related problems
shell: fix compile failures in some configs
ash,hush: fix handling of SIGINT while waiting for interactive input
ash: ^C with SIG_INGed SIGINT should not exit the shell
ash: do not truncate failed tilde expansion on unknown user names
ash: fix ifs cleanup on error paths
ash: fix unsafe use of mempcpy
ash: fix use-after-free in pattern substitution code
awk: input numbers are never octal or hex (only program consts can be)
bc: hopefully fix bug 14956 (use-after-free)
cut: build fix for FEATURE_CUT_REGEX
ifplugd: split -a into -a and -A, latter disables upping in iface creation
init: do not set HOME
ls: implement ls -sh (human-readable allocated blocks)
md5/shaXsum: use FEATURE_COPYBUF_KB to size the buffer instead of fixed 4k
mv: fix error in !VERBOSE configs
nmeter: %[md] %[mw] - dirty file-backed pages, writeback pages
powertop: fix cpuid asm: ebx saving/restoring is properly done by gcc
sed: correctly handle 'w FILE' commands writing to the same file
sed: fix double-free in FEATURE_CLEAN_UP=y configs
sed: fix handling of escaped delimiters in s/// replacement
sed: fix handling of escaped delimiters in s/// search pattern, closes 14541
seedrng: chdir to the SEED_DIRECTORY - avoid concat_path_file's
seedrng: do not hash in a constant string, it's not adding entropy
seedrng: do not hash lengths, they are very predictable
seedrng: do not try to continue on unexpected errors (just exit)
seedrng: explain why we need locking and fsync'ing
seedrng: include file/dir names in error messages
seedrng: re-add fsync after unlink, and explain its purpose
seedrng: reduce MAX_SEED_LEN from 512 to 256
seedrng: remove redundant assignment
seedrng: remove unnecessary zero-filling of local variables
seedrng: restore error check on fsync
seedrng: simplify read_new_seed() to not have error return
seedrng: use more xfuncs where appropriate
shaNNNsum: accept one-space "HASH FILENAME" format for -c, closes 14866
sort: fix -k2M (wasn't skipping leading whitespace)
sort: fix -s -r interaction: 'stable' order is not affected by -r
sort: fix sort -s -u, closes 14871
sort: support -h
sulogin: increase util-linux compatibility
sulogin: start _login_ shell only with -p
sulogin: util-linux does not say "normal startup" on Ctrl-D
taskset: fix printf format mismatch in !FEATURE_TASKSET_FANCY config. closes 14616
top: fix display of large PID/PPID
top: improve large PID display in memory ('s') mode
tree: make it unicode-aware
tree: unicode tweak (use normal space char, 0x20)
udhcpc6: add missed big-endian conversions
udhcpc6: align FF02__1_2[]
udhcpc6: downgrade "opening listen socket" log level to 2
udhcpc6: fix binding to network aliases
udhcpc6: fix sending of renew messages
udhcpc6: use a different default config script
xargs: implement -o, closes 15146
xxd -r: handle offsets
xxd -r: without -p, stop at more than one whitespace, closes 14786
xxd: fix use of non-initialized data
xxd: use bb_simple_perror_msg... where appropriate
Emanuele Giacomelli:
XXXsum: handle binary sums with " " in the path
Grob Grobmann:
vi: add 'ZQ' quitting command
Henrique Rodrigues:
ping: fix typo in --help text
Jason A. Donenfeld (10):
seedrng: import SeedRNG utility for kernel RNG seed files
seedrng: use libbb functions
seedrng: hoist bb_strtoul out of min/max
seedrng: remove some global variables
seedrng: further reduce size
seedrng: use predefined strings where possible
seedrng: avoid needless runtime strlen() call
seedrng: compress format strings with %s arguments
seedrng: code-golf even smaller
seedrng: prune header includes
Khem Raj:
apply const trick to ptr_to_globals
Louis Sautier:
pkill: add -e to display the name and PID of the process being killed
Ludwig Nussel:
libbb: mark stack in assembly files read-only
Natanael Copa (2):
awk: fix use after free (CVE-2022-30065)
more: accept and ignore -e
Paul Fox:
crond: implement support for setting PATH in crontab files
Peter Kaestle:
unzip -l: add missed big-endian conversions date and time
Roger Knecht:
tree: new applet
Ron Yorston (8):
libbb: restore special handling of nomsg errors
libbb: make '--help' handling more consistent
lineedit: get PWD from ash
ash,hush: use HOME for tab completion and prompts
vi: fix regression in autoindent handling
vi: handle autoindent in 'cc' command
vi: improved handling of backspace in replace mode
vi: fix backspace over tab in commands
Samuel Thibault:
Fix non-Linux builds
Shawn Landden:
ash: optional sleep builtin
Sören Tempel (3):
ed: add support for -s command-line option as mandated by POSIX
ash: don't read past end of var in subvareval for bash substitutions
ash: fix use-after-free in bash pattern substitution
Timo Teräs:
mkfs.vfat: fix volume label to be padded with space
Vincent Stehlé:
fdisk: recognize EBBR protective partitions
Walter Lozano:
Add support for long options to cmp
Xiaoming Ni (4):
loop: fix a race when a free loop device is snatched
loop: refactor: extract subfunction get_next_free_loop()
loop: simplify code of LOOP_SET_FD failure
loop: refactor: extract subfunction set_loopdev_params()
```
2023-01-04 21:19:19 +00:00
|
|
|
version = "1.36.0";
|
2010-03-09 22:17:38 +00:00
|
|
|
|
2017-08-21 08:11:00 +01:00
|
|
|
# Note to whoever is updating busybox: please verify that:
|
|
|
|
# nix-build pkgs/stdenv/linux/make-bootstrap-tools.nix -A test
|
|
|
|
# still builds after the update.
|
2010-03-09 22:17:38 +00:00
|
|
|
src = fetchurl {
|
2021-01-07 18:56:22 +00:00
|
|
|
url = "https://busybox.net/downloads/${pname}-${version}.tar.bz2";
|
busybox: 1.35.0 -> 1.36.0
Changes:
```
Aaro Koskinen:
devmem: add 128-bit width
Bernhard Reutner-Fischer (3):
kbuild: fix building sha256
kbuild: Prefer -Oz over -Os
seedrng: manually inline seed_rng
Brandon Maier:
xxd: fix typo in trivial usage
Dario Binacchi (2):
fbset: abort on not handled options
fbset: support setting pixel clock rate
David Leonard:
tsort: new applet
Denys Vlasenko:
Makefile.flags: add resolv to LDLIBS for linux compilers too (not only gnu ones)
build system: detect if build host has no bzip2
scripts/echo.c: fix NUL handling in "abc\0 def"
libbb/loop: fix compile failure (name collision)
libbb/loop: optionally use ioctl(LOOP_CONFIGURE) to set up loopdevs
libbb/loop: restore the correct return value of set_loop()
libbb/sha1: add config-selectable fully unrolled version, closes 14391
libbb/sha1: add config-selectable partially unrolled version
libbb/sha1: assembly versions for x86
libbb/sha1: optional x86 hardware accelerated hashing
libbb/sha256: optional x86 hardware accelerated hashing
libbb: change xstrndup, xmemdup to take size_t as size parameter
libbb: factor out fflush_stdout_and_exit(EXIT_SUCCESS)
libbb: fflush_stdout_and_exit(0) still exits with _error_ (not 0!) if fflush fails
libbb: fix fallout from nth_string() robustification, closes 14726
libbb: introduce and use chdir_or_warn()
libbb: invert the meaning of SETUP_ENV_NO_CHDIR -> SETUP_ENV_CHDIR
tls: P256: remove NOP macro sp_256_norm_8()
tls: include signature_algorithms extension in client hello message
examples/var_service/dhcp_if: make helper scripts more talkative
testsuite/mount.tests: accomodate umount failure seen on 5.18.0
testsuite/sha1sum.tests: fix false positive failure
shell: add comments about SIGINT-related problems
shell: fix compile failures in some configs
ash,hush: fix handling of SIGINT while waiting for interactive input
ash: ^C with SIG_INGed SIGINT should not exit the shell
ash: do not truncate failed tilde expansion on unknown user names
ash: fix ifs cleanup on error paths
ash: fix unsafe use of mempcpy
ash: fix use-after-free in pattern substitution code
awk: input numbers are never octal or hex (only program consts can be)
bc: hopefully fix bug 14956 (use-after-free)
cut: build fix for FEATURE_CUT_REGEX
ifplugd: split -a into -a and -A, latter disables upping in iface creation
init: do not set HOME
ls: implement ls -sh (human-readable allocated blocks)
md5/shaXsum: use FEATURE_COPYBUF_KB to size the buffer instead of fixed 4k
mv: fix error in !VERBOSE configs
nmeter: %[md] %[mw] - dirty file-backed pages, writeback pages
powertop: fix cpuid asm: ebx saving/restoring is properly done by gcc
sed: correctly handle 'w FILE' commands writing to the same file
sed: fix double-free in FEATURE_CLEAN_UP=y configs
sed: fix handling of escaped delimiters in s/// replacement
sed: fix handling of escaped delimiters in s/// search pattern, closes 14541
seedrng: chdir to the SEED_DIRECTORY - avoid concat_path_file's
seedrng: do not hash in a constant string, it's not adding entropy
seedrng: do not hash lengths, they are very predictable
seedrng: do not try to continue on unexpected errors (just exit)
seedrng: explain why we need locking and fsync'ing
seedrng: include file/dir names in error messages
seedrng: re-add fsync after unlink, and explain its purpose
seedrng: reduce MAX_SEED_LEN from 512 to 256
seedrng: remove redundant assignment
seedrng: remove unnecessary zero-filling of local variables
seedrng: restore error check on fsync
seedrng: simplify read_new_seed() to not have error return
seedrng: use more xfuncs where appropriate
shaNNNsum: accept one-space "HASH FILENAME" format for -c, closes 14866
sort: fix -k2M (wasn't skipping leading whitespace)
sort: fix -s -r interaction: 'stable' order is not affected by -r
sort: fix sort -s -u, closes 14871
sort: support -h
sulogin: increase util-linux compatibility
sulogin: start _login_ shell only with -p
sulogin: util-linux does not say "normal startup" on Ctrl-D
taskset: fix printf format mismatch in !FEATURE_TASKSET_FANCY config. closes 14616
top: fix display of large PID/PPID
top: improve large PID display in memory ('s') mode
tree: make it unicode-aware
tree: unicode tweak (use normal space char, 0x20)
udhcpc6: add missed big-endian conversions
udhcpc6: align FF02__1_2[]
udhcpc6: downgrade "opening listen socket" log level to 2
udhcpc6: fix binding to network aliases
udhcpc6: fix sending of renew messages
udhcpc6: use a different default config script
xargs: implement -o, closes 15146
xxd -r: handle offsets
xxd -r: without -p, stop at more than one whitespace, closes 14786
xxd: fix use of non-initialized data
xxd: use bb_simple_perror_msg... where appropriate
Emanuele Giacomelli:
XXXsum: handle binary sums with " " in the path
Grob Grobmann:
vi: add 'ZQ' quitting command
Henrique Rodrigues:
ping: fix typo in --help text
Jason A. Donenfeld (10):
seedrng: import SeedRNG utility for kernel RNG seed files
seedrng: use libbb functions
seedrng: hoist bb_strtoul out of min/max
seedrng: remove some global variables
seedrng: further reduce size
seedrng: use predefined strings where possible
seedrng: avoid needless runtime strlen() call
seedrng: compress format strings with %s arguments
seedrng: code-golf even smaller
seedrng: prune header includes
Khem Raj:
apply const trick to ptr_to_globals
Louis Sautier:
pkill: add -e to display the name and PID of the process being killed
Ludwig Nussel:
libbb: mark stack in assembly files read-only
Natanael Copa (2):
awk: fix use after free (CVE-2022-30065)
more: accept and ignore -e
Paul Fox:
crond: implement support for setting PATH in crontab files
Peter Kaestle:
unzip -l: add missed big-endian conversions date and time
Roger Knecht:
tree: new applet
Ron Yorston (8):
libbb: restore special handling of nomsg errors
libbb: make '--help' handling more consistent
lineedit: get PWD from ash
ash,hush: use HOME for tab completion and prompts
vi: fix regression in autoindent handling
vi: handle autoindent in 'cc' command
vi: improved handling of backspace in replace mode
vi: fix backspace over tab in commands
Samuel Thibault:
Fix non-Linux builds
Shawn Landden:
ash: optional sleep builtin
Sören Tempel (3):
ed: add support for -s command-line option as mandated by POSIX
ash: don't read past end of var in subvareval for bash substitutions
ash: fix use-after-free in bash pattern substitution
Timo Teräs:
mkfs.vfat: fix volume label to be padded with space
Vincent Stehlé:
fdisk: recognize EBBR protective partitions
Walter Lozano:
Add support for long options to cmp
Xiaoming Ni (4):
loop: fix a race when a free loop device is snatched
loop: refactor: extract subfunction get_next_free_loop()
loop: simplify code of LOOP_SET_FD failure
loop: refactor: extract subfunction set_loopdev_params()
```
2023-01-04 21:19:19 +00:00
|
|
|
sha256 = "sha256-VCdQyK98smMOIBeAtPmfPczusG9QW0eexoJBweavYaU=";
|
2010-03-09 22:17:38 +00:00
|
|
|
};
|
|
|
|
|
2018-11-10 19:49:36 +00:00
|
|
|
hardeningDisable = [ "format" "pie" ]
|
|
|
|
++ lib.optionals enableStatic [ "fortify" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2017-11-09 11:11:35 +00:00
|
|
|
patches = [
|
2018-01-07 21:50:23 +00:00
|
|
|
./busybox-in-store.patch
|
2022-04-05 17:09:18 +01:00
|
|
|
(fetchurl {
|
|
|
|
name = "CVE-2022-28391.patch";
|
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch?id=ed92963eb55bbc8d938097b9ccb3e221a94653f4";
|
|
|
|
sha256 = "sha256-yviw1GV+t9tbHbY7YNxEqPi7xEreiXVqbeRyf8c6Awo=";
|
|
|
|
})
|
|
|
|
(fetchurl {
|
|
|
|
name = "CVE-2022-28391.patch";
|
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch?id=ed92963eb55bbc8d938097b9ccb3e221a94653f4";
|
|
|
|
sha256 = "sha256-vl1wPbsHtXY9naajjnTicQ7Uj3N+EQ8pRNnrdsiow+w=";
|
|
|
|
})
|
2021-01-15 14:45:37 +00:00
|
|
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) ./clang-cross.patch;
|
2014-10-29 12:34:46 +00:00
|
|
|
|
2022-01-24 00:37:25 +00:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2018-03-14 21:58:04 +00:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2010-08-01 22:06:45 +01:00
|
|
|
configurePhase = ''
|
2014-04-09 00:15:38 +01:00
|
|
|
export KCONFIG_NOTIMESTAMP=1
|
2014-10-29 12:32:40 +00:00
|
|
|
make ${if enableMinimal then "allnoconfig" else "defconfig"}
|
|
|
|
|
2010-08-01 22:06:45 +01:00
|
|
|
${configParser}
|
2014-10-29 12:32:40 +00:00
|
|
|
|
2010-08-01 22:06:45 +01:00
|
|
|
cat << EOF | parseconfig
|
2014-10-29 12:32:40 +00:00
|
|
|
|
|
|
|
CONFIG_PREFIX "$out"
|
|
|
|
CONFIG_INSTALL_NO_USR y
|
|
|
|
|
2015-10-25 09:15:35 +00:00
|
|
|
CONFIG_LFS y
|
|
|
|
|
2021-06-08 12:59:56 +01:00
|
|
|
# More features for modprobe.
|
|
|
|
${lib.optionalString (!enableMinimal) ''
|
|
|
|
CONFIG_FEATURE_MODPROBE_BLACKLIST y
|
|
|
|
CONFIG_FEATURE_MODUTILS_ALIAS y
|
|
|
|
CONFIG_FEATURE_MODUTILS_SYMBOLS y
|
|
|
|
CONFIG_MODPROBE_SMALL n
|
|
|
|
''}
|
|
|
|
|
2016-07-19 02:37:14 +01:00
|
|
|
${lib.optionalString enableStatic ''
|
2014-10-29 12:32:40 +00:00
|
|
|
CONFIG_STATIC y
|
|
|
|
''}
|
|
|
|
|
2022-02-20 05:11:19 +00:00
|
|
|
${lib.optionalString (!enableAppletSymlinks) ''
|
|
|
|
CONFIG_INSTALL_APPLET_DONT y
|
|
|
|
CONFIG_INSTALL_APPLET_SYMLINKS n
|
|
|
|
''}
|
|
|
|
|
2014-10-29 12:32:40 +00:00
|
|
|
# Use the external mount.cifs program.
|
|
|
|
CONFIG_FEATURE_MOUNT_CIFS n
|
|
|
|
CONFIG_FEATURE_MOUNT_HELPERS y
|
|
|
|
|
2016-07-08 16:32:17 +01:00
|
|
|
# Set paths for console fonts.
|
|
|
|
CONFIG_DEFAULT_SETFONT_DIR "/etc/kbd"
|
|
|
|
|
2018-01-23 21:42:36 +00:00
|
|
|
# Bump from 4KB, much faster I/O
|
|
|
|
CONFIG_FEATURE_COPYBUF_KB 64
|
|
|
|
|
2020-07-07 14:01:49 +01:00
|
|
|
# Set the path for the udhcpc script
|
2020-07-28 23:24:19 +01:00
|
|
|
CONFIG_UDHCPC_DEFAULT_SCRIPT "${outDispatchPath}"
|
2020-07-07 14:01:49 +01:00
|
|
|
|
2014-07-30 09:49:31 +01:00
|
|
|
${extraConfig}
|
2017-11-25 18:43:57 +00:00
|
|
|
CONFIG_CROSS_COMPILER_PREFIX "${stdenv.cc.targetPrefix}"
|
2018-01-23 21:42:02 +00:00
|
|
|
${libcConfig}
|
2010-08-01 22:06:45 +01:00
|
|
|
EOF
|
2014-10-29 12:32:40 +00:00
|
|
|
|
2010-08-01 22:25:37 +01:00
|
|
|
make oldconfig
|
2016-06-01 20:52:03 +01:00
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
2019-10-12 07:31:19 +01:00
|
|
|
postConfigure = lib.optionalString (useMusl && stdenv.hostPlatform.libc != "musl") ''
|
|
|
|
makeFlagsArray+=("CC=${stdenv.cc.targetPrefix}cc -isystem ${musl.dev}/include -B${musl}/lib -L${musl}/lib")
|
|
|
|
'';
|
|
|
|
|
2022-01-24 00:37:25 +00:00
|
|
|
makeFlags = [ "SKIP_STRIP=y" ];
|
|
|
|
|
2020-07-07 14:01:49 +01:00
|
|
|
postInstall = ''
|
2020-07-28 23:24:19 +01:00
|
|
|
sed -e '
|
|
|
|
1 a busybox() { '$out'/bin/busybox "$@"; }\
|
|
|
|
logger() { '$out'/bin/logger "$@"; }\
|
|
|
|
' ${debianDispatcherScript} > ${outDispatchPath}
|
|
|
|
chmod 555 ${outDispatchPath}
|
2021-02-16 20:01:57 +00:00
|
|
|
HOST_PATH=$out/bin patchShebangs --host ${outDispatchPath}
|
2020-07-07 14:01:49 +01:00
|
|
|
'';
|
|
|
|
|
2021-02-16 20:01:57 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2017-06-26 04:10:03 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2016-07-19 02:37:14 +01:00
|
|
|
|
2019-05-09 02:54:27 +01:00
|
|
|
buildInputs = lib.optionals (enableStatic && !useMusl && stdenv.cc.libc ? static) [ stdenv.cc.libc stdenv.cc.libc.static ];
|
2016-06-01 20:52:03 +01:00
|
|
|
|
2012-05-21 18:51:40 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # tries to access the net
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-03-27 23:05:03 +01:00
|
|
|
description = "Tiny versions of common UNIX utilities in a single small executable";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://busybox.net/";
|
2021-06-09 12:14:34 +01:00
|
|
|
license = licenses.gpl2Only;
|
2021-10-12 10:46:21 +01:00
|
|
|
maintainers = with maintainers; [ TethysSvensson qyliss ];
|
2015-05-06 08:14:18 +01:00
|
|
|
platforms = platforms.linux;
|
2019-01-18 23:16:37 +00:00
|
|
|
priority = 10;
|
2012-03-27 23:05:03 +01:00
|
|
|
};
|
2010-03-09 22:17:38 +00:00
|
|
|
}
|