2011-02-08 13:09:17 +00:00
|
|
|
#! /bin/sh -e
|
|
|
|
|
|
|
|
url=$1
|
|
|
|
rev=$2
|
|
|
|
expHash=$3
|
|
|
|
|
|
|
|
hashType=$NIX_HASH_ALGO
|
|
|
|
if test -z "$hashType"; then
|
|
|
|
hashType=sha256
|
|
|
|
fi
|
|
|
|
if test -z "$hashFormat"; then
|
2024-09-17 06:52:57 +00:00
|
|
|
hashFormat=--sri
|
2011-02-08 13:09:17 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test -z "$url"; then
|
|
|
|
echo "syntax: nix-prefetch-bzr URL [REVISION [EXPECTED-HASH]]" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
revarg="-r $rev"
|
|
|
|
test -n "$rev" || revarg=""
|
|
|
|
|
|
|
|
repoName=$(echo $url | sed '
|
|
|
|
s,.*/\([^/]\+\)/trunk/*$,\1,;t
|
|
|
|
s,.*/\([^/]\+\)/branches/\([^/]\+\)/*$,\1-\2,;t
|
|
|
|
s,.*/\([^/]\+\)/tags/\([^/]\+\)/*$,\1-\2,;t
|
|
|
|
s,.*/\([^/]\+\)/*$,\1,;t
|
|
|
|
')
|
2015-12-18 21:48:38 +00:00
|
|
|
dstFile="bzr-export"
|
2011-02-08 13:09:17 +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" $dstFile)
|
|
|
|
if ! nix-store --check-validity "$finalPath" 2> /dev/null; then
|
|
|
|
finalPath=
|
|
|
|
fi
|
|
|
|
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 bzr-checkout-tmp-XXXXXXXX)")"
|
2014-08-25 13:00:55 +00:00
|
|
|
trap "rm -rf \"$tmpPath\"" EXIT
|
2011-02-08 13:09:17 +00:00
|
|
|
|
2014-08-25 13:00:55 +00:00
|
|
|
tmpFile="$tmpPath/$dstFile"
|
2011-02-08 13:09:17 +00:00
|
|
|
|
|
|
|
# Perform the checkout.
|
2013-04-01 02:00:50 +00:00
|
|
|
bzr -Ossl.cert_reqs=none export $revarg --format=dir "$tmpFile" "$url"
|
2011-02-08 13:09:17 +00:00
|
|
|
|
2014-06-11 12:42:39 +00:00
|
|
|
echo "bzr revision is $(bzr revno $revarg "$url")"
|
|
|
|
|
2011-02-08 13:09:17 +00:00
|
|
|
# Compute the hash.
|
|
|
|
hash=$(nix-hash --type $hashType $hashFormat $tmpFile)
|
|
|
|
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)
|
|
|
|
|
|
|
|
if test -n "$expHash" -a "$expHash" != "$hash"; then
|
|
|
|
echo "hash mismatch for URL \`$url'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! test -n "$QUIET"; then echo "path is $finalPath" >&2; fi
|
|
|
|
|
|
|
|
echo $hash
|
|
|
|
|
|
|
|
if test -n "$PRINT_PATH"; then
|
|
|
|
echo $finalPath
|
|
|
|
fi
|