2020-09-13 10:30:39 +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
|
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
|
|
|
|
2020-09-13 10:30:39 +01:00
|
|
|
# The debian version lacks behind the upstream version and also contains
|
|
|
|
# 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";
|
|
|
|
version = "1.32.1";
|
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";
|
|
|
|
sha256 = "1vhd59qmrdyrr1q7rvxmyl96z192mxl089hi87yl0hcp6fyw8mwx";
|
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
|
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
|
|
|
|
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
|
|
|
|
|
2016-07-19 02:37:14 +01:00
|
|
|
${lib.optionalString enableStatic ''
|
2014-10-29 12:32:40 +00:00
|
|
|
CONFIG_STATIC y
|
|
|
|
''}
|
|
|
|
|
|
|
|
# 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")
|
|
|
|
'';
|
|
|
|
|
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}
|
|
|
|
PATH=$out/bin patchShebangs ${outDispatchPath}
|
2020-07-07 14:01:49 +01:00
|
|
|
'';
|
|
|
|
|
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/";
|
2015-05-06 08:14:18 +01:00
|
|
|
license = licenses.gpl2;
|
2020-07-28 21:59:51 +01:00
|
|
|
maintainers = with maintainers; [ TethysSvensson ];
|
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
|
|
|
}
|