about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/jitsi-meet-prosody/update.sh
blob: 3c3695b1f6adaa64b0d13b9e814e9c12ccfbdb12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl pup common-updater-scripts

set -eu -o pipefail

version="$(curl https://download.jitsi.org/stable/ | \
    pup 'a[href] text{}' | \
    awk -F'[_-]' '/jitsi-meet-prosody/ {printf $4"\n"}' | \
    sort -Vu | \
    tail -n 1)"

update-source-version jitsi-meet-prosody "$version"