2017-07-24 04:53:13 +00:00
|
|
|
export PATH=
|
2009-02-01 21:28:55 +00:00
|
|
|
for i in $initialPath; do
|
2012-01-19 15:29:20 +00:00
|
|
|
if [ "$i" = / ]; then i=; fi
|
2009-02-01 21:28:55 +00:00
|
|
|
PATH=$PATH${PATH:+:}$i/bin
|
|
|
|
done
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2005-02-22 14:32:56 +00:00
|
|
|
mkdir $out
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2021-07-19 06:19:43 +00:00
|
|
|
{
|
|
|
|
echo "export SHELL=$shell"
|
|
|
|
echo "initialPath=\"$initialPath\""
|
|
|
|
echo "defaultNativeBuildInputs=\"$defaultNativeBuildInputs\""
|
|
|
|
echo "defaultBuildInputs=\"$defaultBuildInputs\""
|
|
|
|
echo "$preHook"
|
|
|
|
cat "$setup"
|
|
|
|
} > "$out/setup"
|
2012-01-19 15:56:17 +00:00
|
|
|
|
2009-04-25 14:08:29 +00:00
|
|
|
# Allow the user to install stdenv using nix-env and get the packages
|
|
|
|
# in stdenv.
|
2017-08-18 02:07:03 +00:00
|
|
|
mkdir $out/nix-support
|
2017-07-10 15:59:14 +00:00
|
|
|
if [ "$propagatedUserEnvPkgs" ]; then
|
2017-08-18 02:07:03 +00:00
|
|
|
printf '%s ' $propagatedUserEnvPkgs > $out/nix-support/propagated-user-env-packages
|
2017-07-10 15:59:14 +00:00
|
|
|
fi
|