about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/jibri/update.sh
blob: 60e348ff0e20877cf9efcc0eaffdc0dd9fe88a4c (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'[_-]' '/jibri/ {printf $2"-"$3"-"$4"\n"}' | \
    sort -Vu | \
    tail -n 1)"

update-source-version jibri "$version"