2006-05-11 12:36:16 +00:00
|
|
|
#! /bin/sh -e
|
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
cvsRoot=$1
|
2006-05-11 12:36:16 +00:00
|
|
|
module=$2
|
|
|
|
tag=$3
|
2008-02-28 22:36:37 +00:00
|
|
|
expHash=$4
|
2006-05-11 12:36:16 +00:00
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
hashType=$NIX_HASH_ALGO
|
|
|
|
if test -z "$hashType"; then
|
|
|
|
hashType=sha256
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -z "$cvsRoot"; then
|
|
|
|
echo "syntax: nix-prefetch-cvs CVSROOT MODULE [TAG [HASH]]" >&2
|
2006-05-11 12:36:16 +00:00
|
|
|
exit 1
|
|
|
|
elif test -z "$module"; then
|
2008-02-28 22:36:37 +00:00
|
|
|
echo "syntax: nix-prefetch-cvs CVSROOT MODULE [TAG [HASH]]" >&2
|
2006-05-11 12:36:16 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
mkTempDir() {
|
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 nix-prefetch-csv-XXXXXXXX)")"
|
2022-07-02 12:51:12 +02:00
|
|
|
trap removeTempDir EXIT
|
2008-02-28 22:36:37 +00:00
|
|
|
}
|
2006-05-11 12:36:16 +00:00
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
removeTempDir() {
|
2022-07-02 12:51:12 +02:00
|
|
|
rm -rf "$tmpPath"
|
2008-02-28 22:36:37 +00:00
|
|
|
}
|
|
|
|
|
2006-05-11 12:36:16 +00:00
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
# If the hash was given, a file with that hash may already be in the
|
|
|
|
# store.
|
|
|
|
if test -n "$expHash"; then
|
|
|
|
finalPath=$(nix-store --print-fixed-path --recursive "$hashType" "$expHash" cvs-export)
|
|
|
|
if ! nix-store --check-validity "$finalPath" 2> /dev/null; then
|
|
|
|
finalPath=
|
2006-05-11 12:36:16 +00:00
|
|
|
fi
|
2008-02-28 22:36:37 +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
|
|
|
|
|
|
|
|
mkTempDir
|
|
|
|
tmpFile=$tmpPath/cvs-export
|
|
|
|
#mkdir $tmpPath
|
2006-05-11 12:36:16 +00:00
|
|
|
|
|
|
|
# Perform the checkout.
|
|
|
|
if test -z "$tag"; then
|
2008-02-28 23:43:21 +00:00
|
|
|
args=(-D "now")
|
|
|
|
elif test "$USE_DATE" = "1"; then
|
|
|
|
args=(-D "$tag")
|
2006-05-11 12:36:16 +00:00
|
|
|
else
|
2008-02-28 23:43:21 +00:00
|
|
|
args=(-r "$tag")
|
2006-05-11 12:36:16 +00:00
|
|
|
fi
|
2008-02-28 23:43:21 +00:00
|
|
|
(cd "$tmpPath" && cvs -f -z0 -d $cvsRoot export "${args[*]}" -d cvs-export $module >&2)
|
2006-05-11 12:36:16 +00:00
|
|
|
|
|
|
|
# Compute the hash.
|
2024-09-17 06:54:57 +00:00
|
|
|
hash=$(nix-hash --type $hashType ${hashFormat:-"--sri"} $tmpFile)
|
2008-02-28 22:36:37 +00:00
|
|
|
if ! test -n "$QUIET"; then echo "hash is $hash" >&2; fi
|
|
|
|
|
|
|
|
# Add the downloaded file to the Nix store.
|
|
|
|
finalPath=$(nix-store --add-fixed --recursive "$hashType" $tmpFile)
|
2006-05-11 12:36:16 +00:00
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
if test -n "$expHash" -a "$expHash" != "$hash"; then
|
|
|
|
echo "hash mismatch for CVS root \`$cvsRoot'"
|
|
|
|
exit 1
|
2006-05-11 12:36:16 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-02-28 22:36:37 +00:00
|
|
|
if ! test -n "$QUIET"; then echo "path is $finalPath" >&2; fi
|
2006-05-11 12:36:16 +00:00
|
|
|
|
|
|
|
echo $hash
|
|
|
|
|
|
|
|
if test -n "$PRINT_PATH"; then
|
|
|
|
echo $finalPath
|
|
|
|
fi
|