jitsi-meet-prosody: add passthru.updateScript

This commit is contained in:
tshaynik 2021-09-09 15:51:57 -04:00
parent fcc29f9599
commit 328f25d17f
2 changed files with 14 additions and 0 deletions

View file

@ -23,6 +23,8 @@ stdenv.mkDerivation rec {
single-node-smoke-test = nixosTests.jitsi-meet;
};
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Prosody configuration for Jitsi Meet";
longDescription = ''

View file

@ -0,0 +1,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 -u | \
tail -n 1)"
update-source-version jitsi-meet-prosody "$version"