lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

jitsi-meet: add passthru.updateScript

Pull version number from stable releases, to ensure
that the latest stable release is used.

tshaynik fcc29f95 98d9d6fe

+14
+2
pkgs/servers/web-apps/jitsi-meet/default.nix
··· 22 22 single-host-smoke-test = nixosTests.jitsi-meet; 23 23 }; 24 24 25 + passthru.updateScript = ./update.sh; 26 + 25 27 meta = with lib; { 26 28 description = "Secure, Simple and Scalable Video Conferences"; 27 29 longDescription = ''
+12
pkgs/servers/web-apps/jitsi-meet/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p curl pup common-updater-scripts 3 + 4 + set -eu -o pipefail 5 + 6 + version="$(curl https://download.jitsi.org/stable/ | \ 7 + pup 'a[href] text{}' | \ 8 + awk -F'[_-]' '/jitsi-meet-web_/ {printf $4"\n"}' | \ 9 + sort -u | \ 10 + tail -n 1)" 11 + 12 + update-source-version jitsi-meet "$version"