mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
37 lines
667 B
Bash
Executable File
37 lines
667 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p bash wget coreutils gnutar nix
|
|
version=$1
|
|
|
|
if [[ -z $version ]]
|
|
then
|
|
echo "Pass the version to get hashes for as an argument"
|
|
exit 1
|
|
fi
|
|
|
|
allOutput=""
|
|
|
|
dlDest=$(mktemp)
|
|
exDest=$(mktemp -d)
|
|
|
|
trap 'rm $dlDest; rm -r $exDest' EXIT
|
|
|
|
for plat in osx linux; do
|
|
for arch in x64 arm64; do
|
|
|
|
URL="https://github.com/PowerShell/PowerShell/releases/download/v$version/powershell-$version-$plat-$arch.tar.gz"
|
|
wget $URL -O $dlDest >&2
|
|
|
|
tar -xzf $dlDest -C $exDest >&2
|
|
|
|
hash=$(nix hash path $exDest)
|
|
|
|
allOutput+="
|
|
variant: $plat $arch
|
|
hash: $hash
|
|
"
|
|
|
|
done
|
|
done
|
|
|
|
echo "$allOutput"
|