2017-06-02 14:35:13 -07:00
|
|
|
{ stdenv, lib, buildPackages, fetchurl
|
2015-05-06 00:14:18 -07:00
|
|
|
, enableStatic ? false
|
|
|
|
, enableMinimal ? false
|
2017-06-02 14:35:13 -07:00
|
|
|
, useMusl ? false, musl
|
2015-05-06 00:14:18 -07:00
|
|
|
, extraConfig ? ""
|
2017-06-02 14:35:13 -07:00
|
|
|
, buildPlatform, hostPlatform
|
2015-05-06 00:14:18 -07:00
|
|
|
}:
|
2010-03-09 14:17:38 -08:00
|
|
|
|
|
|
|
let
|
2010-08-01 14:06:45 -07:00
|
|
|
configParser = ''
|
|
|
|
function parseconfig {
|
|
|
|
while read LINE; do
|
2010-08-01 14:25:37 -07:00
|
|
|
NAME=`echo "$LINE" | cut -d \ -f 1`
|
|
|
|
OPTION=`echo "$LINE" | cut -d \ -f 2`
|
2010-08-01 14:06:45 -07:00
|
|
|
|
2014-10-29 05:32:40 -07:00
|
|
|
if ! [[ "$NAME" =~ ^CONFIG_ ]]; then continue; fi
|
2010-08-01 14:06:45 -07:00
|
|
|
|
2010-08-01 14:25:37 -07:00
|
|
|
echo "parseconfig: removing $NAME"
|
2012-03-11 14:23:15 -07:00
|
|
|
sed -i /$NAME'\(=\| \)'/d .config
|
2010-08-01 14:06:45 -07:00
|
|
|
|
2010-11-21 12:39:52 -08:00
|
|
|
echo "parseconfig: setting $NAME=$OPTION"
|
|
|
|
echo "$NAME=$OPTION" >> .config
|
2010-08-01 14:06:45 -07:00
|
|
|
done
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2010-03-09 14:17:38 -08:00
|
|
|
in
|
|
|
|
|
2010-08-21 16:13:21 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-07-29 10:30:31 -07:00
|
|
|
name = "busybox-1.27.1";
|
2010-03-09 14:17:38 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-08-21 16:13:21 -07:00
|
|
|
url = "http://busybox.net/downloads/${name}.tar.bz2";
|
2017-07-29 10:30:31 -07:00
|
|
|
sha256 = "0dprylmcignrp29g41nkwr1b30v7i5x21lwymp3b93i1zd9sr468";
|
2010-03-09 14:17:38 -08:00
|
|
|
};
|
|
|
|
|
2016-09-08 19:40:14 -07:00
|
|
|
hardeningDisable = [ "format" ] ++ lib.optional enableStatic [ "fortify" ];
|
2015-12-22 17:59:47 -08:00
|
|
|
|
2014-10-29 05:34:46 -07:00
|
|
|
patches = [ ./busybox-in-store.patch ];
|
|
|
|
|
2010-08-01 14:06:45 -07:00
|
|
|
configurePhase = ''
|
2014-04-08 16:15:38 -07:00
|
|
|
export KCONFIG_NOTIMESTAMP=1
|
2014-10-29 05:32:40 -07:00
|
|
|
make ${if enableMinimal then "allnoconfig" else "defconfig"}
|
|
|
|
|
2010-08-01 14:06:45 -07:00
|
|
|
${configParser}
|
2014-10-29 05:32:40 -07:00
|
|
|
|
2010-08-01 14:06:45 -07:00
|
|
|
cat << EOF | parseconfig
|
2014-10-29 05:32:40 -07:00
|
|
|
|
|
|
|
CONFIG_PREFIX "$out"
|
|
|
|
CONFIG_INSTALL_NO_USR y
|
|
|
|
|
2015-10-25 02:15:35 -07:00
|
|
|
CONFIG_LFS y
|
|
|
|
|
2016-07-18 18:37:14 -07:00
|
|
|
${lib.optionalString enableStatic ''
|
2014-10-29 05:32:40 -07:00
|
|
|
CONFIG_STATIC y
|
|
|
|
''}
|
|
|
|
|
|
|
|
# Use the external mount.cifs program.
|
|
|
|
CONFIG_FEATURE_MOUNT_CIFS n
|
|
|
|
CONFIG_FEATURE_MOUNT_HELPERS y
|
|
|
|
|
2016-07-08 08:32:17 -07:00
|
|
|
# Set paths for console fonts.
|
|
|
|
CONFIG_DEFAULT_SETFONT_DIR "/etc/kbd"
|
|
|
|
|
2014-07-30 01:49:31 -07:00
|
|
|
${extraConfig}
|
2017-06-23 14:45:27 -07:00
|
|
|
CONFIG_CROSS_COMPILER_PREFIX "${stdenv.cc.prefix}"
|
2010-08-01 14:06:45 -07:00
|
|
|
EOF
|
2014-10-29 05:32:40 -07:00
|
|
|
|
2010-08-01 14:25:37 -07:00
|
|
|
make oldconfig
|
2016-06-01 12:52:03 -07:00
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
|
|
|
postConfigure = lib.optionalString useMusl ''
|
2017-06-02 14:35:13 -07:00
|
|
|
makeFlagsArray+=("CC=${stdenv.cc.prefix}gcc -isystem ${musl}/include -B${musl}/lib -L${musl}/lib")
|
2010-08-01 14:06:45 -07:00
|
|
|
'';
|
2010-03-09 14:17:38 -08:00
|
|
|
|
2017-06-02 14:35:13 -07:00
|
|
|
nativeBuildInputs = lib.optional (hostPlatform != buildPlatform) buildPackages.stdenv.cc;
|
2016-07-18 18:37:14 -07:00
|
|
|
|
2017-06-02 14:35:13 -07:00
|
|
|
buildInputs = lib.optionals (enableStatic && !useMusl) [ stdenv.cc.libc stdenv.cc.libc.static ];
|
2016-06-01 12:52:03 -07:00
|
|
|
|
2012-05-21 10:51:40 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-06 00:14:18 -07:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-27 15:05:03 -07:00
|
|
|
description = "Tiny versions of common UNIX utilities in a single small executable";
|
|
|
|
homepage = http://busybox.net/;
|
2015-05-06 00:14:18 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ viric ];
|
|
|
|
platforms = platforms.linux;
|
2012-03-27 15:05:03 -07:00
|
|
|
};
|
2010-03-09 14:17:38 -08:00
|
|
|
}
|