12 lines
270 B
Bash
12 lines
270 B
Bash
#! @shell@ -e
|
|
|
|
echo "downloading $url into $out"
|
|
|
|
prefetch=@storedir@/nix-prefetch-url-$outputHash
|
|
if test -f "$prefetch"; then
|
|
echo "using prefetched $prefetch";
|
|
@coreutils@/mv $prefetch $out
|
|
else
|
|
@curl@ --fail --location --max-redirs 20 "$url" > "$out"
|
|
fi
|