2009-02-01 22:28:55 +01:00
|
|
|
export PATH=
|
|
|
|
for i in $initialPath; do
|
2012-01-19 16:29:20 +01:00
|
|
|
if [ "$i" = / ]; then i=; fi
|
2009-02-01 22:28:55 +01:00
|
|
|
PATH=$PATH${PATH:+:}$i/bin
|
|
|
|
done
|
2004-07-02 12:05:53 +02:00
|
|
|
|
2005-02-22 15:32:56 +01:00
|
|
|
mkdir $out
|
2004-07-02 12:05:53 +02:00
|
|
|
|
2014-07-01 17:39:07 +02:00
|
|
|
echo "export SHELL=$shell" > $out/setup
|
|
|
|
echo "initialPath=\"$initialPath\"" >> $out/setup
|
2014-11-06 12:10:28 +01:00
|
|
|
echo "defaultNativeBuildInputs=\"$defaultNativeBuildInputs\"" >> $out/setup
|
2014-07-01 17:39:07 +02:00
|
|
|
echo "$preHook" >> $out/setup
|
2012-01-19 16:56:17 +01:00
|
|
|
cat "$setup" >> $out/setup
|
|
|
|
|
2009-04-25 16:08:29 +02:00
|
|
|
# Allow the user to install stdenv using nix-env and get the packages
|
|
|
|
# in stdenv.
|
|
|
|
mkdir $out/nix-support
|
|
|
|
echo $propagatedUserEnvPkgs > $out/nix-support/propagated-user-env-packages
|