{ writeScript, lib, xidel, common-updater-scripts, coreutils, gnused, gnugrep, curl, gnupg, attrPath, runtimeShell, baseUrl ? "https://archive.mozilla.org/pub/firefox/releases/", versionPrefix ? "", versionSuffix ? "", versionKey ? "version", }: writeScript "update-${attrPath}" '' #!${runtimeShell} PATH=${ lib.makeBinPath [ common-updater-scripts coreutils curl gnugrep gnupg gnused xidel ] } set -eux HOME=`mktemp -d` export GNUPGHOME=`mktemp -d` curl https://keys.openpgp.org/vks/v1/by-fingerprint/09BEED63F3462A2DFFAB3B875ECB6497C1A20256 | gpg --import - url=${baseUrl} # retriving latest released version # - extracts all links from the $url # - extracts lines only with number and dots followed by a slash # - removes trailing slash # - sorts everything with semver in mind # - picks up latest release version=`xidel -s $url --extract "//a" | \ grep "^${versionPrefix}[0-9.]*${versionSuffix}/$" | \ sed s/[/]$// | \ sort --version-sort | \ tail -n 1` curl --silent --show-error -o "$HOME"/shasums "$url$version/SHA512SUMS" curl --silent --show-error -o "$HOME"/shasums.asc "$url$version/SHA512SUMS.asc" gpgv --keyring="$GNUPGHOME"/pubring.kbx "$HOME"/shasums.asc "$HOME"/shasums hash=$(grep '\.source\.tar\.xz$' "$HOME"/shasums | grep '^[^ ]*' -o) update-source-version ${attrPath} "$version" "$hash" "" --version-key=${versionKey} ''