2018-06-13 03:07:36 +03:00
|
|
|
{
|
|
|
|
runCommandCC
|
|
|
|
, nukeReferences
|
|
|
|
, glibc
|
2018-06-26 04:01:34 +03:00
|
|
|
, buildPackages
|
2018-06-13 03:07:36 +03:00
|
|
|
}:
|
|
|
|
|
|
|
|
{
|
|
|
|
name ? ""
|
|
|
|
, packages ? []
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
concat = builtins.concatStringsSep "\n";
|
|
|
|
install_package = set:
|
|
|
|
let
|
|
|
|
pkg = if set ? type && set.type == "derivation" then set else set.package;
|
|
|
|
in
|
|
|
|
''
|
|
|
|
for BIN in ${pkg}/{s,}bin/*; do
|
|
|
|
copy_bin_and_libs $BIN
|
|
|
|
done
|
|
|
|
${if set ? extraCommand then set.extraCommand else ""}
|
|
|
|
'';
|
|
|
|
install_packages = concat(map (install_package) packages);
|
|
|
|
in
|
|
|
|
runCommandCC "extra-utils-${name}"
|
|
|
|
{
|
2018-06-26 04:01:34 +03:00
|
|
|
nativeBuildInputs = [ nukeReferences buildPackages.glibc.bin ];
|
2018-06-13 03:07:36 +03:00
|
|
|
allowedReferences = [ "out" ];
|
|
|
|
}
|
|
|
|
''
|
|
|
|
set +o pipefail
|
|
|
|
mkdir -p $out/bin $out/lib
|
|
|
|
ln -s $out/bin $out/sbin
|
|
|
|
copy_bin_and_libs() {
|
|
|
|
[ -f "$out/bin/$(basename $1)" ] && rm "$out/bin/$(basename $1)"
|
|
|
|
cp -pd $1 $out/bin
|
|
|
|
}
|
|
|
|
${install_packages}
|
|
|
|
|
|
|
|
# Copy ld manually since it isn't detected correctly
|
|
|
|
cp -pv ${glibc.out}/lib/ld*.so.? $out/lib
|
|
|
|
# Copy all of the needed libraries
|
|
|
|
find $out/bin $out/lib -type f | while read BIN; do
|
|
|
|
echo "Copying libs for executable $BIN"
|
|
|
|
LDD="$(ldd $BIN)" || continue
|
|
|
|
LIBS="$(echo "$LDD" | awk '{print $3}' | sed '/^$/d')"
|
|
|
|
for LIB in $LIBS; do
|
|
|
|
TGT="$out/lib/$(basename $LIB)"
|
|
|
|
if [ ! -f "$TGT" ]; then
|
|
|
|
SRC="$(readlink -e $LIB)"
|
|
|
|
cp -pdv "$SRC" "$TGT"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
# Strip binaries further than normal.
|
|
|
|
chmod -R u+w $out
|
|
|
|
stripDirs "lib bin" "-s"
|
|
|
|
# Run patchelf to make the programs refer to the copied libraries.
|
|
|
|
find $out/bin $out/lib -type f | while read i; do
|
|
|
|
if ! test -L $i; then
|
|
|
|
nuke-refs -e $out $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
find $out/bin -type f | while read i; do
|
|
|
|
if ! test -L $i; then
|
|
|
|
echo "patching $i..."
|
|
|
|
patchelf --set-interpreter $out/lib/ld*.so.? --set-rpath $out/lib $i || true
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# TODO : make a test-case for this
|
|
|
|
# # Make sure that the patchelf'ed binaries still work.
|
|
|
|
# echo "testing patched programs..."
|
|
|
|
# $out/bin/ash -c 'echo hello world' | grep "hello world"
|
|
|
|
# export LD_LIBRARY_PATH=$out/lib
|
|
|
|
# $out/bin/mount --help 2>&1 | grep -q "BusyBox"
|
|
|
|
''
|