2014-06-27 12:33:05 +01:00
|
|
|
# This setup hook causes the fixup phase to rewrite all script
|
|
|
|
# interpreter file names (`#! /path') to paths found in $PATH. E.g.,
|
|
|
|
# /bin/sh will be rewritten to /nix/store/<hash>-some-bash/bin/sh.
|
|
|
|
# /usr/bin/env gets special treatment so that ".../bin/env python" is
|
|
|
|
# rewritten to /nix/store/<hash>/bin/python. Interpreters that are
|
|
|
|
# already in the store are left untouched.
|
|
|
|
|
2015-09-17 15:54:07 +01:00
|
|
|
fixupOutputHooks+=('if [ -z "$dontPatchShebangs" -a -e "$prefix" ]; then patchShebangs "$prefix"; fi')
|
2014-06-27 12:33:05 +01:00
|
|
|
|
|
|
|
patchShebangs() {
|
|
|
|
local dir="$1"
|
|
|
|
header "patching script interpreter paths in $dir"
|
|
|
|
local f
|
|
|
|
local oldPath
|
|
|
|
local newPath
|
|
|
|
local arg0
|
|
|
|
local args
|
|
|
|
local oldInterpreterLine
|
|
|
|
local newInterpreterLine
|
|
|
|
|
2015-09-06 09:21:43 +01:00
|
|
|
find "$dir" -type f -perm -0100 | while read f; do
|
2015-11-07 03:45:26 +00:00
|
|
|
if [ "$(head -1 "$f" | head -c+2)" != '#!' ]; then
|
2014-06-27 12:33:05 +01:00
|
|
|
# missing shebang => not a script
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2015-11-07 03:45:26 +00:00
|
|
|
oldInterpreterLine=$(head -1 "$f" | tail -c+3)
|
2014-06-27 12:33:05 +01:00
|
|
|
read -r oldPath arg0 args <<< "$oldInterpreterLine"
|
|
|
|
|
|
|
|
if $(echo "$oldPath" | grep -q "/bin/env$"); then
|
|
|
|
# Check for unsupported 'env' functionality:
|
|
|
|
# - options: something starting with a '-'
|
|
|
|
# - environment variables: foo=bar
|
|
|
|
if $(echo "$arg0" | grep -q -- "^-.*\|.*=.*"); then
|
|
|
|
echo "unsupported interpreter directive \"$oldInterpreterLine\" (set dontPatchShebangs=1 and handle shebang patching yourself)"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
newPath="$(command -v "$arg0" || true)"
|
|
|
|
else
|
|
|
|
if [ "$oldPath" = "" ]; then
|
|
|
|
# If no interpreter is specified linux will use /bin/sh. Set
|
|
|
|
# oldpath="/bin/sh" so that we get /nix/store/.../sh.
|
|
|
|
oldPath="/bin/sh"
|
|
|
|
fi
|
|
|
|
newPath="$(command -v "$(basename "$oldPath")" || true)"
|
|
|
|
args="$arg0 $args"
|
|
|
|
fi
|
|
|
|
|
2016-07-07 21:35:08 +01:00
|
|
|
# Strip trailing whitespace introduced when no arguments are present
|
2016-07-09 01:05:11 +01:00
|
|
|
newInterpreterLine="$(echo "$newPath $args" | sed 's/[[:space:]]*$//')"
|
2014-06-27 12:33:05 +01:00
|
|
|
|
|
|
|
if [ -n "$oldPath" -a "${oldPath:0:${#NIX_STORE}}" != "$NIX_STORE" ]; then
|
|
|
|
if [ -n "$newPath" -a "$newPath" != "$oldPath" ]; then
|
|
|
|
echo "$f: interpreter directive changed from \"$oldInterpreterLine\" to \"$newInterpreterLine\""
|
|
|
|
# escape the escape chars so that sed doesn't interpret them
|
|
|
|
escapedInterpreterLine=$(echo "$newInterpreterLine" | sed 's|\\|\\\\|g')
|
2018-01-01 17:05:46 +00:00
|
|
|
# Preserve times, see: https://github.com/NixOS/nixpkgs/pull/33281
|
|
|
|
touch -r "$f" "$f.timestamp"
|
2014-06-27 12:33:05 +01:00
|
|
|
sed -i -e "1 s|.*|#\!$escapedInterpreterLine|" "$f"
|
2018-01-01 17:05:46 +00:00
|
|
|
touch -r "$f.timestamp" "$f"
|
|
|
|
rm "$f.timestamp"
|
2014-06-27 12:33:05 +01:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
stopNest
|
|
|
|
}
|