summary refs log tree commit diff
path: root/pkgs/development/compilers/rust/print-hashes.sh
blob: da52ac37ab3085e1af6e9cd431ed8dd49a76b996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env bash

# All rust-related downloads can be found at
# https://static.rust-lang.org/dist/index.html.  To find the date on
# which a particular thing was last updated, look for the *-date.txt
# file, e.g.
# https://static.rust-lang.org/dist/channel-rust-beta-date.txt

PLATFORMS="i686-unknown-linux-gnu x86_64-unknown-linux-gnu i686-apple-darwin x86_64-apple-darwin"
BASEURL="https://static.rust-lang.org/dist"
DATE=$1
VERSION=$2

if [[ -z  $DATE ]]
then
    echo "No date supplied"
    exit -1
fi

if [[ -z  $VERSION ]]
then
    echo "No version supplied"
    exit -1
fi

for PLATFORM in $PLATFORMS
do
    URL="$BASEURL/$DATE/rust-$VERSION-$PLATFORM.tar.gz.sha256"
    curl $URL
done