2004-04-21 14:54:05 +00:00
|
|
|
#! @shell@ -e
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
url=$1
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
if test -z "$url"; then
|
|
|
|
echo "syntax: nix-prefetch-url URL" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
# !!! race? should be relatively safe, `svn export' barfs if $tmpPath exists.
|
|
|
|
tmpPath1=@storedir@/nix-prefetch-url-$$
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
# Perform the checkout.
|
|
|
|
@curl@ --fail --location --max-redirs 20 "$url" > $tmpPath1
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
# Compute the hash.
|
|
|
|
hash=$(@bindir@/nix-hash --flat $tmpPath1)
|
|
|
|
echo "hash is $hash" >&2
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
# Rename it so that the fetchsvn builder can find it.
|
|
|
|
tmpPath2=@storedir@/nix-prefetch-url-$hash
|
|
|
|
test -e $tmpPath2 || mv $tmpPath1 $tmpPath2 # !!! race
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
# Create a Nix expression that does a fetchsvn.
|
|
|
|
storeExpr=$( \
|
|
|
|
echo "(import @datadir@/nix/corepkgs/fetchurl) \
|
|
|
|
{url = $url; md5 = \"$hash\"; system = \"@system@\";}" \
|
|
|
|
| nix-instantiate -)
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
# Realise it.
|
|
|
|
finalPath=$(nix-store -qnB --force-realise $storeExpr)
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
echo "path is $finalPath" >&2
|
2003-11-22 18:45:56 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
rm -rf $tmpPath2 || true
|
2003-08-15 10:13:41 +00:00
|
|
|
|
2004-04-21 14:54:05 +00:00
|
|
|
echo $hash
|