2004-04-14 10:55:33 +00:00
|
|
|
#! /bin/sh -e
|
|
|
|
|
|
|
|
url=$1
|
|
|
|
rev=$2
|
2006-05-30 12:42:00 +00:00
|
|
|
expHash=$3
|
|
|
|
|
|
|
|
hashType=$NIX_HASH_ALGO
|
|
|
|
if test -z "$hashType"; then
|
2009-07-10 15:50:11 +00:00
|
|
|
hashType=sha256
|
|
|
|
fi
|
|
|
|
if test -z "$hashFormat"; then
|
|
|
|
hashFormat=--base32
|
2006-05-30 12:42:00 +00:00
|
|
|
fi
|
2004-04-14 10:55:33 +00:00
|
|
|
|
|
|
|
if test -z "$url"; then
|
2006-05-30 12:42:00 +00:00
|
|
|
echo "syntax: nix-prefetch-svn URL [REVISION [EXPECTED-HASH]]" >&2
|
2004-04-14 10:55:33 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
test -n "$rev" || rev="HEAD"
|
|
|
|
|
2009-10-06 13:36:52 +00:00
|
|
|
repoName=$(echo $url | sed '
|
|
|
|
s,.*/\([^/]\+\)/trunk/*$,\1,;t
|
|
|
|
s,.*/\([^/]\+\)/branches/\([^/]\+\)/*$,\1-\2,;t
|
|
|
|
s,.*/\([^/]\+\)/tags/\([^/]\+\)/*$,\1-\2,;t
|
|
|
|
s,.*/\([^/]\+\)/*$,\1,;t
|
|
|
|
')
|
|
|
|
dstFile=$repoName-r$rev
|
2004-12-17 11:04:18 +00:00
|
|
|
|
2006-05-30 12:42:00 +00:00
|
|
|
# If the hash was given, a file with that hash may already be in the
|
|
|
|
# store.
|
|
|
|
if test -n "$expHash"; then
|
2009-10-06 13:36:52 +00:00
|
|
|
finalPath=$(nix-store --print-fixed-path --recursive "$hashType" "$expHash" $dstFile)
|
2006-05-30 12:42:00 +00:00
|
|
|
if ! nix-store --check-validity "$finalPath" 2> /dev/null; then
|
|
|
|
finalPath=
|
2004-12-17 11:04:18 +00:00
|
|
|
fi
|
2006-05-30 12:42:00 +00:00
|
|
|
hash=$expHash
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# If we don't know the hash or a path with that hash doesn't exist,
|
|
|
|
# download the file and add it to the store.
|
|
|
|
if test -z "$finalPath"; then
|
build-support: fix nix-prefetch-* on macOS
Since nix 2.20, `nix-store --add-fixed` doesn't accept paths where the
parent directory is a symlink. On macOS, /tmp is a symlink to
/private/tmp, which causes a "'/tmp' is a symlink" error:
```
$ nix run github:nixos/nixpkgs/24.11-beta#nix-prefetch-git -- --url https://github.com/IFTTT/polo.git --rev 316aa2ac210a45a7fc400ab921831493d5dd21b8 --hash sha256
Initialized empty Git repository in /private/tmp/git-checkout-tmp-1Bf9bIv7/polo-316aa2a/.git/
remote: Enumerating objects: 51, done.
remote: Counting objects: 100% (51/51), done.
remote: Compressing objects: 100% (42/42), done.
remote: Total 51 (delta 8), reused 19 (delta 5), pack-reused 0 (from 0)
Unpacking objects: 100% (51/51), 19.57 KiB | 541.00 KiB/s, done.
From https://github.com/IFTTT/polo
* branch HEAD -> FETCH_HEAD
Switched to a new branch 'fetchgit'
removing `.git'...
error: path '/tmp' is a symlink
```
Avoid this by resolving /tmp to a real directory in all the prefetch scripts
2024-11-24 11:32:46 +00:00
|
|
|
# nix>=2.20 rejects adding symlinked paths to the store, so use realpath
|
|
|
|
# to resolve to a physical path. https://github.com/NixOS/nix/issues/11941
|
2024-11-25 09:22:09 +00:00
|
|
|
tmpPath="$(realpath "$(mktemp -d --tmpdir svn-checkout-tmp-XXXXXXXX)")"
|
2014-08-25 15:00:55 +02:00
|
|
|
trap "rm -rf \"$tmpPath\"" EXIT
|
2005-02-22 16:27:28 +00:00
|
|
|
|
2014-08-25 15:00:55 +02:00
|
|
|
tmpFile="$tmpPath/$dstFile"
|
2006-07-18 12:00:38 +00:00
|
|
|
|
2004-12-17 11:04:18 +00:00
|
|
|
# Perform the checkout.
|
2009-12-03 15:01:54 +00:00
|
|
|
if test "$NIX_PREFETCH_SVN_LEAVE_DOT_SVN" != 1
|
|
|
|
then
|
|
|
|
command="export"
|
|
|
|
else
|
|
|
|
command="checkout"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo p | svn "$command" --quiet -r "$rev" "$url" "$tmpFile" >&2
|
2014-06-11 14:42:39 +02:00
|
|
|
echo "svn revision is $(svn info -r "$rev" "$url" | grep "Revision: " | cut -d' ' -f2)"
|
2004-04-14 10:55:33 +00:00
|
|
|
|
2004-12-17 11:04:18 +00:00
|
|
|
# Compute the hash.
|
2006-05-30 12:42:00 +00:00
|
|
|
hash=$(nix-hash --type $hashType $hashFormat $tmpFile)
|
|
|
|
if ! test -n "$QUIET"; then echo "hash is $hash" >&2; fi
|
2004-04-14 10:55:33 +00:00
|
|
|
|
2006-05-30 12:42:00 +00:00
|
|
|
# Add the downloaded file to the Nix store.
|
|
|
|
finalPath=$(nix-store --add-fixed --recursive "$hashType" $tmpFile)
|
2004-04-14 10:55:33 +00:00
|
|
|
|
2006-05-30 12:42:00 +00:00
|
|
|
if test -n "$expHash" -a "$expHash" != "$hash"; then
|
|
|
|
echo "hash mismatch for URL \`$url'"
|
|
|
|
exit 1
|
|
|
|
fi
|
2004-12-17 11:04:18 +00:00
|
|
|
fi
|
2004-04-14 10:55:33 +00:00
|
|
|
|
2006-05-30 12:42:00 +00:00
|
|
|
if ! test -n "$QUIET"; then echo "path is $finalPath" >&2; fi
|
|
|
|
|
2004-04-14 10:55:33 +00:00
|
|
|
echo $hash
|
2004-12-17 10:40:00 +00:00
|
|
|
|
|
|
|
if test -n "$PRINT_PATH"; then
|
|
|
|
echo $finalPath
|
|
|
|
fi
|