1if [ -e "$NIX_ATTRS_SH_FILE" ]; then . "$NIX_ATTRS_SH_FILE"; elif [ -f .attrs.sh ]; then . .attrs.sh; fi
2source $stdenv/setup
3
4genericBuild
5
6# !!! hack
7export ALL_INPUTS="$out $pkgs"
8
9find $out -name "*.dll.config" | while read configFile; do
10 echo "modifying config file $configFile"
11 $monoDLLFixer "$configFile"
12done