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
|
|
|
|
2014-07-01 15:39:07 +00:00
|
|
|
echo "export SHELL=$shell" > $out/setup
|
|
|
|
echo "initialPath=\"$initialPath\"" >> $out/setup
|
2014-11-06 11:10:28 +00:00
|
|
|
echo "defaultNativeBuildInputs=\"$defaultNativeBuildInputs\"" >> $out/setup
|
2014-07-01 15:39:07 +00:00
|
|
|
echo "$preHook" >> $out/setup
|
2012-01-19 15:56:17 +00:00
|
|
|
cat "$setup" >> $out/setup
|
|
|
|
|
2009-04-25 14:08:29 +00:00
|
|
|
# Allow the user to install stdenv using nix-env and get the packages
|
|
|
|
# in stdenv.
|
|
|
|
mkdir $out/nix-support
|
2017-07-10 15:59:14 +00:00
|
|
|
if [ "$propagatedUserEnvPkgs" ]; then
|
|
|
|
printf '%s\n' $propagatedUserEnvPkgs > $out/nix-support/propagated-user-env-packages
|
|
|
|
fi
|