Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.0 KiB
Bash
Executable File
52 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -p nix jq curl cargo rsync
|
|
#! nix-shell -i bash
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
crate=rure
|
|
|
|
echo "Getting latest version from crates.io API" >&2
|
|
|
|
curlOpts=(
|
|
-H "Accept: application/json"
|
|
-H "User-Agent: $crate update script (https://github.com/nixos/nixpkgs/)"
|
|
)
|
|
|
|
version="$(curl "${curlOpts[@]}" "https://crates.io/api/v1/crates/$crate" \
|
|
| jq -r .crate.max_stable_version)"
|
|
|
|
echo "Prefetching latest tarball from crates.io" >&2
|
|
|
|
url="https://crates.io/api/v1/crates/$crate/$version/download"
|
|
prefetch="$(nix-prefetch-url --print-path --type sha256 --unpack "$url")"
|
|
|
|
cat > pin.json <<EOF
|
|
{
|
|
"pname": "$crate",
|
|
"version": "$version",
|
|
"hash": "sha256:$(printf '%s' "$prefetch" | head -n1)"
|
|
}
|
|
EOF
|
|
|
|
echo "Generating updated Cargo.lock" >&2
|
|
|
|
tmp="$(mktemp -d)"
|
|
|
|
cleanup() {
|
|
echo "Removing $tmp" >&2
|
|
rm -rf "$tmp"
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
rsync -a --chmod=ugo=rwX "$(printf '%s' "$prefetch" | tail -n1)/" "$tmp"
|
|
|
|
pushd "$tmp"
|
|
cargo update
|
|
popd
|
|
|
|
cp "$tmp/Cargo.lock" ./Cargo.lock
|