about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/ngrok-2/update.sh
blob: 4e2aaf4e5596be66c58e6899139f26634f25ddf2 (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
31
32
33
34
#!/usr/bin/env nix-shell
#!nix-shell -p httpie
#!nix-shell -p jq
#!nix-shell -i bash

set -eu -o pipefail

get_download_info() {
    http --body \
         https://update.equinox.io/check \
         'Accept:application/json; q=1; version=1; charset=utf-8' \
         'Content-Type:application/json; charset=utf-8' \
         app_id=app_goVRodbMVm \
         channel=stable \
         os=$1 \
         goarm= \
         arch=$2 \
    | jq --arg sys "$1-$2" '{
        sys: $sys,
        url: .download_url,
        sha256: .checksum,
        version: .release.version
    }'
}

(
    get_download_info linux 386
    get_download_info linux amd64
    get_download_info linux arm
    get_download_info linux arm64
    get_download_info darwin amd64
    get_download_info darwin arm64
) | jq --slurp 'map ({ (.sys): . }) | add' \
    > pkgs/tools/networking/ngrok-2/versions.json