2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, lib, buildPackages, fetchurl
|
2015-05-06 08:14:18 +01:00
|
|
|
, enableStatic ? false
|
|
|
|
, 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
|
|
|
|
'';
|
2010-03-09 22:17:38 +00:00
|
|
|
in
|
|
|
|
|
2010-08-22 00:13:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-11-13 23:07:53 +00:00
|
|
|
name = "busybox-1.31.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 {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://busybox.net/downloads/${name}.tar.bz2";
|
2019-11-13 23:07:53 +00:00
|
|
|
sha256 = "1659aabzp8w4hayr4z8kcpbk2z1q2wqhw7i1yb0l72b45ykl1yfh";
|
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
|
2019-08-10 06:37:41 +01:00
|
|
|
] ++ stdenv.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
|
|
|
|
|
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")
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
|
|
2015-05-06 08:14:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-27 23:05:03 +01:00
|
|
|
description = "Tiny versions of common UNIX utilities in a single small executable";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://busybox.net/;
|
2015-05-06 08:14:18 +01:00
|
|
|
license = licenses.gpl2;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
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
|
|
|
}
|