guix/corepkgs/fetchurl/builder.sh.in

20 lines
409 B
Bash
Raw Normal View History

#! @shell@ -e
export PATH=/bin:/usr/bin
echo "downloading $url into $out"
2004-04-14 10:45:11 +00:00
prefetch=@storedir@/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
2003-07-12 11:03:14 +00:00
actual=$(@bindir@/nix-hash --flat $out)
2003-08-06 10:00:30 +00:00
if test "$actual" != "$md5"; then
echo "hash is $actual, expected $md5"
exit 1
2003-07-12 11:03:14 +00:00
fi