mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-27 16:33:05 +03:00
c0b506c51d
- ignore electron versions < 3 - update print-hashes.sh - add hashes for version 17 and 18
41 lines
1000 B
Bash
Executable File
41 lines
1000 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
if [[ $# -lt 1 ]]; then
|
|
echo "$0: version" >&2
|
|
exit 1
|
|
fi
|
|
|
|
|
|
VERSION=$1
|
|
|
|
declare -A SYSTEMS
|
|
SYSTEMS=(
|
|
[i686-linux]=linux-ia32
|
|
[x86_64-linux]=linux-x64
|
|
[armv7l-linux]=linux-armv7l
|
|
[aarch64-linux]=linux-arm64
|
|
[x86_64-darwin]=darwin-x64
|
|
[aarch64-darwin]=darwin-arm64
|
|
)
|
|
|
|
hashfile="$(nix-prefetch-url --print-path "https://github.com/electron/electron/releases/download/v${VERSION}/SHASUMS256.txt" | tail -n1)"
|
|
headers="$(nix-prefetch-url "https://artifacts.electronjs.org/headers/dist/v${VERSION}/node-v${VERSION}-headers.tar.gz")"
|
|
|
|
# Entry similar to the following goes in default.nix:
|
|
|
|
echo "Add the following lines to dream2nix/overrides/nodejs/default.nix:\n"
|
|
echo " \"${VERSION}\" = {"
|
|
|
|
for S in "${!SYSTEMS[@]}"; do
|
|
hash="$(grep " *electron-v${VERSION}-${SYSTEMS[$S]}.zip$" "$hashfile"|cut -f1 -d' ' || :)"
|
|
if [[ -n $hash ]]; then
|
|
echo " $S = \"$hash\";"
|
|
fi
|
|
done
|
|
|
|
echo " headers = \"$headers\";"
|
|
|
|
echo " };"
|