2009-02-02 00:28:55 +03:00
|
|
|
export PATH=
|
|
|
|
for i in $initialPath; do
|
2012-01-19 19:29:20 +04:00
|
|
|
if [ "$i" = / ]; then i=; fi
|
2009-02-02 00:28:55 +03:00
|
|
|
PATH=$PATH${PATH:+:}$i/bin
|
|
|
|
done
|
2004-07-02 14:05:53 +04:00
|
|
|
|
2005-02-22 17:32:56 +03:00
|
|
|
mkdir $out
|
2004-07-02 14:05:53 +04:00
|
|
|
|
2014-07-01 19:39:07 +04:00
|
|
|
echo "export SHELL=$shell" > $out/setup
|
|
|
|
echo "initialPath=\"$initialPath\"" >> $out/setup
|
2014-11-06 14:10:28 +03:00
|
|
|
echo "defaultNativeBuildInputs=\"$defaultNativeBuildInputs\"" >> $out/setup
|
2014-07-01 19:39:07 +04:00
|
|
|
echo "$preHook" >> $out/setup
|
2012-01-19 19:56:17 +04:00
|
|
|
cat "$setup" >> $out/setup
|
|
|
|
|
2009-04-25 18:08:29 +04: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
|