nixpkgs/pkgs/servers/jitsi-videobridge/update.sh
Simon Bruder 13760b87d2
jitsi-videobridge: fix update script
Otherwise e.g. jitsi-videobridge2_2.2-18-gade06bf8 is seen as newer than
jitsi-videobridge2_2.2-9-g8cded16e.
2022-08-12 15:15:20 +02:00

13 lines
341 B
Bash
Executable File

#!/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-videobridge2/ {printf $3"-"$4"-"$5"\n"}' | \
sort -Vu | \
tail -n 1)"
update-source-version jitsi-videobridge "$version"