1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/corepkgs/fetchurl/builder.sh.in

20 lines
414 B
Bash
Raw Normal View History

#! /bin/sh
export PATH=/bin:/usr/bin
2003-07-12 07:03:14 -04:00
echo "downloading $url into $out..."
prefetch=@prefix@/store/nix-prefetch-url-$md5
if test -f "$prefetch"; then
echo "using prefetched $prefetch";
mv $prefetch $out || exit 1
else
2003-10-02 11:48:47 -04:00
@wget@ --passive-ftp "$url" -O "$out" || exit 1
fi
2003-07-12 07:03:14 -04:00
actual=$(@bindir@/nix-hash --flat $out)
2003-08-06 06:00:30 -04:00
if test "$actual" != "$md5"; then
echo "hash is $actual, expected $md5"
exit 1
2003-07-12 07:03:14 -04:00
fi