97202ee3b7
Moved all the shell fixes to fix-builder.sh, which is now always invoked. Added aterm to the list of packages provided by mingw.nix svn path=/nixpkgs/trunk/; revision=6152
15 lines
272 B
Bash
Executable file
15 lines
272 B
Bash
Executable file
# Workaround MSYS shell problem
|
|
|
|
if test -z "$out"; then
|
|
stdenv=$STDENV
|
|
out=$OUT
|
|
src=$SRC
|
|
srcs=$SRCS
|
|
buildInputs=$BUILDINPUTS
|
|
propagatedBuildInputs=$PROPAGATEDBUILDINPUTS
|
|
succeedOnFailure=$SUCCEEDONFAILURE
|
|
patches=$PATCHES
|
|
doCheck=$DOCHECK
|
|
fi
|
|
|
|
source $@
|