03f1d1ecb5
* Made the dependencies on bzip2 and the shell explicit.
20 lines
413 B
Bash
20 lines
413 B
Bash
#! @shell@ -e
|
|
|
|
export PATH=/bin:/usr/bin
|
|
|
|
echo "downloading $url into $out"
|
|
|
|
prefetch=@prefix@/store/nix-prefetch-url-$md5
|
|
if test -f "$prefetch"; then
|
|
echo "using prefetched $prefetch";
|
|
mv $prefetch $out
|
|
else
|
|
@curl@ --fail --location --max-redirs 20 "$url" > "$out"
|
|
fi
|
|
|
|
actual=$(@bindir@/nix-hash --flat $out)
|
|
if test "$actual" != "$md5"; then
|
|
echo "hash is $actual, expected $md5"
|
|
exit 1
|
|
fi
|