blob: 92b87465261d0b34d51c5e7d3b474f00ab9a9d75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#! @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
|