14 lines
381 B
Bash
14 lines
381 B
Bash
if [ -e "$NIX_ATTRS_SH_FILE" ]; then . "$NIX_ATTRS_SH_FILE"; elif [ -f .attrs.sh ]; then . .attrs.sh; fi
|
|
source $stdenv/setup
|
|
echo "Downloading Steam depots for appId $appId into $out"
|
|
|
|
export HOME="$PWD"
|
|
mkdir -p "$out"
|
|
|
|
for args in "${depotArgs[@]}"; do
|
|
echo "Downloading component: $args"
|
|
DepotDownloader $args -dir "$out" -validate
|
|
done
|
|
|
|
rm -rf "$out/.DepotDownloader"
|