2017-01-04 22:38:55 +00:00
|
|
|
{ writeScript
|
|
|
|
, lib
|
2016-12-25 08:35:20 +00:00
|
|
|
, xidel
|
2017-01-04 22:38:55 +00:00
|
|
|
, common-updater-scripts
|
2016-12-25 08:35:20 +00:00
|
|
|
, coreutils
|
|
|
|
, gnused
|
|
|
|
, gnugrep
|
|
|
|
, curl
|
2017-01-04 22:38:55 +00:00
|
|
|
, attrPath
|
2019-02-26 11:45:54 +00:00
|
|
|
, runtimeShell
|
2016-12-25 08:35:20 +00:00
|
|
|
, baseUrl ? "http://archive.mozilla.org/pub/firefox/releases/"
|
|
|
|
, versionSuffix ? ""
|
2018-11-16 14:04:54 +00:00
|
|
|
, versionKey ? "version"
|
2016-12-25 08:35:20 +00:00
|
|
|
}:
|
|
|
|
|
2017-01-04 22:38:55 +00:00
|
|
|
writeScript "update-${attrPath}" ''
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2017-01-04 22:38:55 +00:00
|
|
|
PATH=${lib.makeBinPath [ common-updater-scripts coreutils curl gnugrep gnused xidel ]}
|
2016-12-25 08:35:20 +00:00
|
|
|
|
|
|
|
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
|
2018-03-14 12:01:25 +00:00
|
|
|
version=`xidel -s $url --extract "//a" | \
|
2016-12-25 08:35:20 +00:00
|
|
|
grep "^[0-9.]*${versionSuffix}/$" | \
|
|
|
|
sed s/[/]$// | \
|
|
|
|
sort --version-sort | \
|
|
|
|
tail -n 1`
|
|
|
|
|
2019-03-02 21:11:54 +00:00
|
|
|
update-source-version ${attrPath} "$version" "" "" --version-key=${versionKey}
|
2016-12-25 08:35:20 +00:00
|
|
|
''
|